-
Notifications
You must be signed in to change notification settings - Fork 1
/
thesis.log
1857 lines (1706 loc) · 71.4 KB
/
thesis.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020/W32TeX) (preloaded format=pdflatex 2020.8.11) 12 AUG 2020 13:50
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**thesis.tex
(./thesis.tex
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-08-07> (./monashthesis.cls
Document Class: monashthesis 2016/09/06 Monash Thesis Class
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2020/02/11 v2.0o Standard LaTeX package
) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/inputenc.st
y
Package: inputenc 2018/08/11 v1.3c Input encoding file
\inpenc@prehook=\toks15
\inpenc@posthook=\toks16
) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/bera/bera.sty
Package: bera 2004/01/31 (WaS)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2020/02/11 v2.0o Standard LaTeX package
) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/textcomp.st
y
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/bera/beraserif.sty
Package: beraserif 2004/01/30 (WaS)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/keyval.st
y
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks17
)
LaTeX Font Info: Trying to load font information for T1+fve on input line 30
.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/bera/t1fve.fd
File: t1fve.fd 2004/09/07 scalable font definitions for T1/fve.
)
LaTeX Font Info: Font shape `T1/fve/m/n' will be
(Font) scaled to size 8.99994pt on input line 30.
) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/bera/berasans.st
y
Package: berasans 2004/01/30 (WaS)
) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/bera/beramono.st
y
Package: beramono 2004/01/31 (WaS)
))
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/psnfss/mathpazo.st
y
Package: mathpazo 2020/03/25 PSNFSS-v9.3 Palatino w/ Pazo Math (D.Puga, WaS)
\symupright=\mathgroup4
) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/report.cls
Document Class: report 2019/12/20 v1.4l Standard LaTeX document class
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/size11.clo
File: size11.clo 2019/12/20 v1.4l Standard LaTeX file (size option)
LaTeX Font Info: Font shape `T1/fve/m/n' will be
(Font) scaled to size 9.85492pt on input line 54.
)
\c@part=\count168
\c@chapter=\count169
\c@section=\count170
\c@subsection=\count171
\c@subsubsection=\count172
\c@paragraph=\count173
\c@subparagraph=\count174
\c@figure=\count175
\c@table=\count176
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen134
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/geometry/geometry.
sty
Package: geometry 2020/01/02 v5.9 Page Geometry
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2020/03/06 v1.0d TeX engine tests
))
\Gm@cnth=\count177
\Gm@cntv=\count178
\c@Gm@tempcnt=\count179
\Gm@bindingoffset=\dimen135
\Gm@wd@mp=\dimen136
\Gm@odd@mp=\dimen137
\Gm@even@mp=\dimen138
\Gm@layoutwidth=\dimen139
\Gm@layoutheight=\dimen140
\Gm@layouthoffset=\dimen141
\Gm@layoutvoffset=\dimen142
\Gm@dimlist=\toks18
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/caption.st
y
Package: caption 2020/05/30 v3.4k Customizing captions (AR)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/caption3.s
ty
Package: caption3 2020/07/20 v1.12b caption3 kernel (AR)
Package caption3 Info: TeX engine: e-TeX on input line 61.
\captionmargin=\dimen143
\captionmargin@=\dimen144
\captionwidth=\dimen145
\caption@tempdima=\dimen146
\caption@indent=\dimen147
\caption@parindent=\dimen148
\caption@hangindent=\dimen149
Package caption Info: Standard document class detected.
)
\c@caption@flags=\count180
\c@continuedfloat=\count181
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/fancyhdr/fancyhdr.
sty
Package: fancyhdr 2019/01/31 v3.10 Extensive control of page headers and footer
s
\f@nch@headwidth=\skip49
\f@nch@O@elh=\skip50
\f@nch@O@erh=\skip51
\f@nch@O@olh=\skip52
\f@nch@O@orh=\skip53
\f@nch@O@elf=\skip54
\f@nch@O@erf=\skip55
\f@nch@O@olf=\skip56
\f@nch@O@orf=\skip57
) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/bm.sty
Package: bm 2019/07/24 v1.2d Bold Symbol Support (DPC/FMi)
\symboldoperators=\mathgroup5
\symboldletters=\mathgroup6
\symboldsymbols=\mathgroup7
\symboldupright=\mathgroup8
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 141.
LaTeX Info: Redefining \bm on input line 209.
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsmath.st
y
Package: amsmath 2020/01/20 v2.17e AMS math features
\@mathmargin=\skip58
For additional information on amsmath, use the `?' option.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amstext.st
y
Package: amstext 2000/06/29 v2.01 AMS text
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks19
\ex@=\dimen150
))
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
LaTeX Info: Redefining \boldsymbol on input line 28.
\pmbraise@=\dimen151
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count182
LaTeX Info: Redefining \frac on input line 227.
\uproot@=\count183
\leftroot@=\count184
LaTeX Info: Redefining \overline on input line 389.
\classnum@=\count185
\DOTSCASE@=\count186
LaTeX Info: Redefining \ldots on input line 486.
LaTeX Info: Redefining \dots on input line 489.
LaTeX Info: Redefining \cdots on input line 610.
\Mathstrutbox@=\box45
\strutbox@=\box46
\big@size=\dimen152
LaTeX Font Info: Redeclaring font encoding OML on input line 733.
LaTeX Font Info: Redeclaring font encoding OMS on input line 734.
\macc@depth=\count187
\c@MaxMatrixCols=\count188
\dotsspace@=\muskip16
\c@parentequation=\count189
\dspbrk@lvl=\count190
\tag@help=\toks20
\row@=\count191
\column@=\count192
\maxfields@=\count193
\andhelp@=\toks21
\eqnshift@=\dimen153
\alignsep@=\dimen154
\tagshift@=\dimen155
\tagwidth@=\dimen156
\totwidth@=\dimen157
\lineht@=\dimen158
\@envbody=\toks22
\multlinegap=\skip59
\multlinetaggap=\skip60
\mathdisplay@stack=\toks23
LaTeX Info: Redefining \[ on input line 2859.
LaTeX Info: Redefining \] on input line 2860.
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/graphicx.
sty
Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/graphics.
sty
Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-cfg/graph
ics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 105.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-def/pdfte
x.def
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
))
\Gin@req@height=\dimen159
\Gin@req@width=\dimen160
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/placeins/placeins.
sty
Package: placeins 2005/04/18 v 2.2
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/titlesec/titlesec.
sty
Package: titlesec 2019/10/16 v2.13 Sectioning titles
\ttl@box=\box47
\beforetitleunit=\skip61
\aftertitleunit=\skip62
\ttl@plus=\dimen161
\ttl@minus=\dimen162
\ttl@toksa=\toks24
\titlewidth=\dimen163
\titlewidthlast=\dimen164
\titlewidthfirst=\dimen165
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/setspace/setspace.
sty
Package: setspace 2011/12/19 v6.7a set line spacing
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/microtype/microtyp
e.sty
Package: microtype 2019/11/18 v2.7d Micro-typographical refinements (RS)
\MT@toks=\toks25
\MT@count=\count194
LaTeX Info: Redefining \textls on input line 790.
\MT@outer@kern=\dimen166
LaTeX Info: Redefining \textmicrotypecontext on input line 1354.
\MT@listname@count=\count195
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/microtype/microtyp
e-pdftex.def
File: microtype-pdftex.def 2019/11/18 v2.7d Definitions specific to pdftex (RS)
LaTeX Info: Redefining \lsstyle on input line 914.
LaTeX Info: Redefining \lslig on input line 914.
\MT@outer@space=\skip63
)
Package microtype Info: Loading configuration file microtype.cfg.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/microtype/microtyp
e.cfg
File: microtype.cfg 2019/11/18 v2.7d microtype main configuration file (RS)
))
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/ragged2e/ragged2e.
sty
Package: ragged2e 2019/07/28 v2.2 ragged2e Package (MS)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/ms/everysel.sty
Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS)
)
\CenteringLeftskip=\skip64
\RaggedLeftLeftskip=\skip65
\RaggedRightLeftskip=\skip66
\CenteringRightskip=\skip67
\RaggedLeftRightskip=\skip68
\RaggedRightRightskip=\skip69
\CenteringParfillskip=\skip70
\RaggedLeftParfillskip=\skip71
\RaggedRightParfillskip=\skip72
\JustifyingParfillskip=\skip73
\CenteringParindent=\skip74
\RaggedLeftParindent=\skip75
\RaggedRightParindent=\skip76
\JustifyingParindent=\skip77
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/biblatex/biblatex.
sty
Package: biblatex 2019/12/01 v3.14 programmable bibliographies (PK/MW)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/pdftexcmds/pdfte
xcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/infwarerr/infwar
err.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/ltxcmds/ltxcmds.
sty
Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/etoolbox/etoolbox.
sty
Package: etoolbox 2020/07/15 v2.5i e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count196
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/kvoptions/kvoption
s.sty
Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/kvsetkeys/kvsetk
eys.sty
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
)) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/logreq/logreq.s
ty
Package: logreq 2010/08/04 v1.0 xml request logger
\lrq@indent=\count197
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/logreq/logreq.def
File: logreq.def 2010/08/04 v1.0 logreq spec v1.0
)) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip17
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
\c@tabx@nest=\count198
\c@listtotal=\count199
\c@listcount=\count266
\c@liststart=\count267
\c@liststop=\count268
\c@citecount=\count269
\c@citetotal=\count270
\c@multicitecount=\count271
\c@multicitetotal=\count272
\c@instcount=\count273
\c@maxnames=\count274
\c@minnames=\count275
\c@maxitems=\count276
\c@minitems=\count277
\c@citecounter=\count278
\c@maxcitecounter=\count279
\c@savedcitecounter=\count280
\c@uniquelist=\count281
\c@uniquename=\count282
\c@refsection=\count283
\c@refsegment=\count284
\c@maxextratitle=\count285
\c@maxextratitleyear=\count286
\c@maxextraname=\count287
\c@maxextradate=\count288
\c@maxextraalpha=\count289
\c@abbrvpenalty=\count290
\c@highnamepenalty=\count291
\c@lownamepenalty=\count292
\c@maxparens=\count293
\c@parenlevel=\count294
\blx@tempcnta=\count295
\blx@tempcntb=\count296
\blx@tempcntc=\count297
\blx@maxsection=\count298
\blx@maxsegment@0=\count299
\blx@notetype=\count300
\blx@parenlevel@text=\count301
\blx@parenlevel@foot=\count302
\blx@sectionciteorder@0=\count303
\blx@entrysetcounter=\count304
\labelnumberwidth=\skip78
\labelalphawidth=\skip79
\biblabelsep=\skip80
\bibitemsep=\skip81
\bibnamesep=\skip82
\bibinitsep=\skip83
\bibparsep=\skip84
\bibhang=\skip85
\blx@bcfin=\read2
\blx@bcfout=\write3
\blx@langwohyphens=\language3
\c@mincomprange=\count305
\c@maxcomprange=\count306
\c@mincompwidth=\count307
Package biblatex Info: Trying to load biblatex default data model...
Package biblatex Info: ... file 'blx-dm.def' found.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/biblatex/blx-dm.de
f
File: blx-dm.def 2019/12/01 v3.14 biblatex localization (PK/MW)
)
Package biblatex Info: Trying to load biblatex style data model...
Package biblatex Info: ... file 'authoryear-comp.dbx' not found.
Package biblatex Info: Trying to load biblatex custom data model...
Package biblatex Info: ... file 'biblatex-dm.cfg' not found.
\c@afterword=\count308
\c@savedafterword=\count309
\c@annotator=\count310
\c@savedannotator=\count311
\c@author=\count312
\c@savedauthor=\count313
\c@bookauthor=\count314
\c@savedbookauthor=\count315
\c@commentator=\count316
\c@savedcommentator=\count317
\c@editor=\count318
\c@savededitor=\count319
\c@editora=\count320
\c@savededitora=\count321
\c@editorb=\count322
\c@savededitorb=\count323
\c@editorc=\count324
\c@savededitorc=\count325
\c@foreword=\count326
\c@savedforeword=\count327
\c@holder=\count328
\c@savedholder=\count329
\c@introduction=\count330
\c@savedintroduction=\count331
\c@namea=\count332
\c@savednamea=\count333
\c@nameb=\count334
\c@savednameb=\count335
\c@namec=\count336
\c@savednamec=\count337
\c@translator=\count338
\c@savedtranslator=\count339
\c@shortauthor=\count340
\c@savedshortauthor=\count341
\c@shorteditor=\count342
\c@savedshorteditor=\count343
\c@labelname=\count344
\c@savedlabelname=\count345
\c@institution=\count346
\c@savedinstitution=\count347
\c@lista=\count348
\c@savedlista=\count349
\c@listb=\count350
\c@savedlistb=\count351
\c@listc=\count352
\c@savedlistc=\count353
\c@listd=\count354
\c@savedlistd=\count355
\c@liste=\count356
\c@savedliste=\count357
\c@listf=\count358
\c@savedlistf=\count359
\c@location=\count360
\c@savedlocation=\count361
\c@organization=\count362
\c@savedorganization=\count363
\c@origlocation=\count364
\c@savedoriglocation=\count365
\c@origpublisher=\count366
\c@savedorigpublisher=\count367
\c@publisher=\count368
\c@savedpublisher=\count369
\c@language=\count370
\c@savedlanguage=\count371
\c@origlanguage=\count372
\c@savedoriglanguage=\count373
\c@pageref=\count374
\c@savedpageref=\count375
\shorthandwidth=\skip86
\shortjournalwidth=\skip87
\shortserieswidth=\skip88
\shorttitlewidth=\skip89
\shortauthorwidth=\skip90
\shorteditorwidth=\skip91
\locallabelnumberwidth=\skip92
\locallabelalphawidth=\skip93
\localshorthandwidth=\skip94
\localshortjournalwidth=\skip95
\localshortserieswidth=\skip96
\localshorttitlewidth=\skip97
\localshortauthorwidth=\skip98
\localshorteditorwidth=\skip99
Package biblatex Info: Trying to load compatibility code...
Package biblatex Info: ... file 'blx-compat.def' found.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/biblatex/blx-compa
t.def
File: blx-compat.def 2019/12/01 v3.14 biblatex compatibility (PK/MW)
)
Package biblatex Info: Trying to load generic definitions...
Package biblatex Info: ... file 'biblatex.def' found.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/biblatex/biblatex.
def
File: biblatex.def 2019/12/01 v3.14 biblatex compatibility (PK/MW)
\c@textcitecount=\count376
\c@textcitetotal=\count377
\c@textcitemaxnames=\count378
\c@biburlbigbreakpenalty=\count379
\c@biburlbreakpenalty=\count380
\c@biburlnumpenalty=\count381
\c@biburlucpenalty=\count382
\c@biburllcpenalty=\count383
\biburlbigskip=\muskip18
\biburlnumskip=\muskip19
\biburlucskip=\muskip20
\biburllcskip=\muskip21
\c@smartand=\count384
)
Package biblatex Info: Trying to load natbib compatibility...
Package biblatex Info: ... file 'blx-natbib.def' found.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/biblatex/blx-natbi
b.def
File: blx-natbib.def 2019/12/01 v3.14 biblatex compatibility (PK/MW)
Package biblatex Info: Delimiter 'nameyeardelim' in context '' already defined,
overwriting.
)
Package biblatex Info: Trying to load bibliography style 'authoryear-comp'...
Package biblatex Info: ... file 'authoryear-comp.bbx' found.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/biblatex/bbx/autho
ryear-comp.bbx
File: authoryear-comp.bbx 2019/12/01 v3.14 biblatex bibliography style (PK/MW)
Package biblatex Info: Trying to load bibliography style 'authoryear'...
Package biblatex Info: ... file 'authoryear.bbx' found.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/biblatex/bbx/autho
ryear.bbx
File: authoryear.bbx 2019/12/01 v3.14 biblatex bibliography style (PK/MW)
Package biblatex Info: Trying to load bibliography style 'standard'...
Package biblatex Info: ... file 'standard.bbx' found.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/biblatex/bbx/stand
ard.bbx
File: standard.bbx 2019/12/01 v3.14 biblatex bibliography style (PK/MW)
\c@bbx:relatedcount=\count385
\c@bbx:relatedtotal=\count386
)))
Package biblatex Info: Trying to load citation style 'authoryear-comp'...
Package biblatex Info: ... file 'authoryear-comp.cbx' found.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/biblatex/cbx/autho
ryear-comp.cbx
File: authoryear-comp.cbx 2019/12/01 v3.14 biblatex citation style (PK/MW)
Package biblatex Info: Redefining '\cite'.
Package biblatex Info: Redefining '\parencite'.
Package biblatex Info: Redefining '\footcite'.
Package biblatex Info: Redefining '\footcitetext'.
Package biblatex Info: Redefining '\smartcite'.
Package biblatex Info: Redefining '\textcite'.
Package biblatex Info: Redefining '\textcites'.
Package biblatex Info: Redefining '\cites'.
Package biblatex Info: Redefining '\parencites'.
Package biblatex Info: Redefining '\footcites'.
Package biblatex Info: Redefining '\footcitetexts'.
Package biblatex Info: Redefining '\smartcites'.
)
Package biblatex Info: Trying to load configuration file...
Package biblatex Info: ... file 'biblatex.cfg' found.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/biblatex/biblatex.
cfg
File: biblatex.cfg
)) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/xpatch/xpatch.s
ty
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2020-08-07 L3 programming layer (loader)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/l3backend/l3backen
d-pdfmode.def
File: l3backend-pdfmode.def 2020-08-07 L3 backend support: PDF mode
\l__kernel_color_stack_int=\count387
\l__pdf_internal_box=\box48
))
Package: xpatch 2020/03/25 v0.3a Extending etoolbox patching commands
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/l3packages/xparse/
xparse.sty
Package: xparse 2020-05-15 L3 Experimental document command parser
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/l3packages/xparse/
xparse-generic.tex
\l__xparse_current_arg_int=\count388
\g__xparse_grabber_int=\count389
\l__xparse_m_args_int=\count390
\l__xparse_v_nesting_int=\count391
))) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/xcolor/xcolor.
sty
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-cfg/color
.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: pdftex.def on input line 225.
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
Package xcolor Info: Model `RGB' extended on input line 1364.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/hyperref.
sty
Package: hyperref 2020-05-15 v7.00e Hypertext links for LaTeX
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/kvdefinekeys/kvd
efinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/pdfescape/pdfesc
ape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hycolor/hycolor.st
y
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/letltxmacro/letltx
macro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/auxhook/auxhook.st
y
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
\@linkdim=\dimen167
\Hy@linkcounter=\count392
\Hy@pagecounter=\count393
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/pd1enc.de
f
File: pd1enc.def 2020-05-15 v7.00e Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/intcalc/intcalc.
sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/etexcmds/etexcmd
s.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count394
Package hyperref Info: Option `colorlinks' set `false' on input line 4338.
Package hyperref Info: Hyper figures OFF on input line 4464.
Package hyperref Info: Link nesting OFF on input line 4469.
Package hyperref Info: Hyper index ON on input line 4472.
Package hyperref Info: Plain pages OFF on input line 4479.
Package hyperref Info: Backreferencing OFF on input line 4484.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4717.
\c@Hy@tempcnt=\count395
LaTeX Info: Redefining \url on input line 5076.
\XeTeXLinkMargin=\dimen168
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/bitset/bitset.st
y
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/bigintcalc/bigin
tcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count396
\Field@Width=\dimen169
\Fld@charsize=\dimen170
Package hyperref Info: Hyper figures OFF on input line 6347.
Package hyperref Info: Link nesting OFF on input line 6352.
Package hyperref Info: Hyper index ON on input line 6355.
Package hyperref Info: backreferencing OFF on input line 6362.
Package hyperref Info: Link coloring OFF on input line 6367.
Package hyperref Info: Link coloring with OCG OFF on input line 6372.
Package hyperref Info: PDF/A mode OFF on input line 6377.
LaTeX Info: Redefining \ref on input line 6417.
LaTeX Info: Redefining \pageref on input line 6421.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/atbegshi/atbegsh
i.sty
Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO)
)
\Hy@abspage=\count397
\c@Item=\count398
\c@Hfootnote=\count399
)
Package hyperref Info: Driver (autodetected): hpdftex.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/hpdftex.d
ef
File: hpdftex.def 2020-05-15 v7.00e Hyperref driver for pdfTeX
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/atveryend/atveryen
d.sty
Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO)
)
\Fld@listcount=\count400
\c@bookmark@seq@number=\count401
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/rerunfilecheck/rer
unfilecheck.sty
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/uniquecounter/un
iquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
86.
)
\Hy@SectionHShift=\skip100
)
Package hyperref Info: Option `breaklinks' set `true' on input line 163.
Package hyperref Info: Option `bookmarksopen' set `true' on input line 163.
Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 163.
Package hyperref Info: Option `colorlinks' set `true' on input line 163.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tocbibind/tocbibin
d.sty
Package: tocbibind 2010/10/13 v1.5k extra ToC listings
Package tocbibind Info: The document has chapter divisions on input line 50.
Package tocbibind Note: Using chapter style headings, unless overridden.
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tocloft/tocloft.st
y
Package: tocloft 2017/08/31 v2.3i parameterised ToC, etc., typesetting
Package tocloft Info: The document has chapter divisions on input line 51.
\cftparskip=\skip101
\cftbeforetoctitleskip=\skip102
\cftaftertoctitleskip=\skip103
\cftbeforepartskip=\skip104
\cftpartnumwidth=\skip105
\cftpartindent=\skip106
\cftbeforechapskip=\skip107
\cftchapindent=\skip108
\cftchapnumwidth=\skip109
\cftbeforesecskip=\skip110
\cftsecindent=\skip111
\cftsecnumwidth=\skip112
\cftbeforesubsecskip=\skip113
\cftsubsecindent=\skip114
\cftsubsecnumwidth=\skip115
\cftbeforesubsubsecskip=\skip116
\cftsubsubsecindent=\skip117
\cftsubsubsecnumwidth=\skip118
\cftbeforeparaskip=\skip119
\cftparaindent=\skip120
\cftparanumwidth=\skip121
\cftbeforesubparaskip=\skip122
\cftsubparaindent=\skip123
\cftsubparanumwidth=\skip124
\cftbeforeloftitleskip=\skip125
\cftafterloftitleskip=\skip126
\cftbeforefigskip=\skip127
\cftfigindent=\skip128
\cftfignumwidth=\skip129
\c@lofdepth=\count402
\c@lotdepth=\count403
\cftbeforelottitleskip=\skip130
\cftafterlottitleskip=\skip131
\cftbeforetabskip=\skip132
\cfttabindent=\skip133
\cfttabnumwidth=\skip134
) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/framed/framed.st
y
Package: framed 2011/10/22 v 0.96: framed or shaded text with page breaks
\OuterFrameSep=\skip135
\fb@frw=\dimen171
\fb@frh=\dimen172
\FrameRule=\dimen173
\FrameSep=\dimen174
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/fancyvrb/fancyvrb.
sty
Package: fancyvrb 2020/05/03 v3.6 verbatim text (tvz,hv)
\FV@CodeLineNo=\count404
\FV@InFile=\read3
\FV@TabBox=\box49
\c@FancyVerbLine=\count405
\FV@StepNumber=\count406
\FV@OutFile=\write4
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/longtable.st
y
Package: longtable 2020/01/07 v4.13 Multi-page Table package (DPC)
\LTleft=\skip136
\LTright=\skip137
\LTpre=\skip138
\LTpost=\skip139
\LTchunksize=\count407
\LTcapwidth=\dimen175
\LT@head=\box50
\LT@firsthead=\box51
\LT@foot=\box52
\LT@lastfoot=\box53
\LT@cols=\count408
\LT@rows=\count409
\c@LT@tables=\count410
\c@LT@chunks=\count411
\LT@p@ftn=\toks26
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/booktabs/booktabs.
sty
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen176
\lightrulewidth=\dimen177
\cmidrulewidth=\dimen178
\belowrulesep=\dimen179
\belowbottomsep=\dimen180
\aboverulesep=\dimen181
\abovetopsep=\dimen182
\cmidrulesep=\dimen183
\cmidrulekern=\dimen184
\defaultaddspace=\dimen185
\@cmidla=\count412
\@cmidlb=\count413
\@aboverulesep=\dimen186
\@belowrulesep=\dimen187
\@thisruleclass=\count414
\@lastruleclass=\count415
\@thisrulewidth=\dimen188
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/pdfpages/pdfpages.
sty
Package: pdfpages 2020/01/28 v0.5q Insert pages of external PDF documents (AM)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count416
\calc@Bcount=\count417
\calc@Adimen=\dimen189
\calc@Bdimen=\dimen190
\calc@Askip=\skip140
\calc@Bskip=\skip141
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count418
\calc@Cskip=\skip142
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/eso-pic/eso-pic.st
y
Package: eso-pic 2018/04/12 v2.0h eso-pic (RN)
)
\AM@pagewidth=\dimen191
\AM@pageheight=\dimen192
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/pdfpages/pppdftex.
def
File: pppdftex.def 2020/01/28 v0.5q Pdfpages driver for pdfTeX (AM)
)
\AM@pagebox=\box54
\AM@global@opts=\toks27
\AM@pagecnt=\count419
\AM@toc@title=\toks28
\c@AM@survey=\count420
\AM@templatesizebox=\box55
)
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/multirow/multirow.
sty
Package: multirow 2019/05/31 v2.5 Span multiple rows of a table
\multirow@colwidth=\skip143
\multirow@cntb=\count421
\multirow@dima=\skip144
\bigstrutjot=\dimen193
) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/array.sty
Package: array 2019/08/31 v2.4l Tabular extension package (FMi)
\col@sep=\dimen194
\ar@mcellbox=\box56
\extrarowheight=\dimen195
\NC@list=\toks29
\extratabsurround=\skip145
\backup@length=\skip146
\ar@cellbox=\box57
) (c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count422
\float@exts=\toks30
\float@box=\box58
\@float@everytoks=\toks31
\@floatcapt=\box59
))
\@quotelevel=\count423
\@quotereset=\count424
(./thesis.aux
LaTeX Warning: Label `fig:melanoma-geo' multiply defined.
)
\openout1 = `thesis.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 28.
LaTeX Font Info: ... okay on input line 28.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 28.
LaTeX Font Info: ... okay on input line 28.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 28.
LaTeX Font Info: ... okay on input line 28.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 28.
LaTeX Font Info: ... okay on input line 28.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 28.
LaTeX Font Info: ... okay on input line 28.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 28.
LaTeX Font Info: ... okay on input line 28.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 28.
LaTeX Font Info: ... okay on input line 28.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 28.
LaTeX Font Info: ... okay on input line 28.
LaTeX Font Info: Trying to load font information for T1+ppl on input line 28
.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/psnfss/t1ppl.fd
File: t1ppl.fd 2001/06/04 font definitions for T1/ppl.
)
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: a4paper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes: twoside
* h-part:(L,W,R)=(99.58464pt, 426.79135pt, 71.13188pt)
* v-part:(T,H,B)=(71.13188pt, 674.33032pt, 99.58464pt)
* \paperwidth=597.50787pt
* \paperheight=845.04684pt
* \textwidth=426.79135pt
* \textheight=674.33032pt
* \oddsidemargin=27.31465pt
* \evensidemargin=-1.1381pt
* \topmargin=-38.1381pt
* \headheight=27.0pt
* \headsep=25.0pt
* \topskip=11.0pt
* \footskip=30.0pt
* \marginparwidth=103.0pt
* \marginparsep=10.0pt
* \columnsep=10.0pt
* \skip\footins=10.0pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidetrue
* \@mparswitchtrue
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: float package is loaded.
Package caption Info: hyperref package is loaded.
Package caption Info: longtable package is loaded.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/ltcaption.
sty
Package: ltcaption 2020/05/30 v1.4b longtable captions (AR)
)
Package caption Info: End \AtBeginDocument code.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/epstopdf-pkg/epsto
pdf-base.sty
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
85.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/latexconfig/epstop
df-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
LaTeX Info: Redefining \microtypecontext on input line 28.
Package microtype Info: Generating PDF output.
Package microtype Info: Character protrusion enabled (level 2).
Package microtype Info: Using default protrusion set `alltext'.
Package microtype Info: Automatic font expansion enabled (level 2),
(microtype) stretch: 20, shrink: 20, step: 1, non-selected.
Package microtype Info: Using default expansion set `basictext'.
LaTeX Info: Redefining \showhyphens on input line 28.
Package microtype Info: No adjustment of tracking.
Package microtype Info: No adjustment of interword spacing.
Package microtype Info: No adjustment of character kerning.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/microtype/mt-ppl.c
fg
File: mt-ppl.cfg 2005/11/16 v1.6 microtype config. file: Palatino (RS)
) ABD: EverySelectfont initializing macros
LaTeX Info: Redefining \selectfont on input line 28.
Package biblatex Info: Trying to load language 'english'...
Package biblatex Info: ... file 'english.lbx' found.
(c:/Users/steff/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/biblatex/lbx/engli
sh.lbx
File: english.lbx 2019/12/01 v3.14 biblatex localization (PK/MW)
)
Package biblatex Info: Input encoding 'utf8' detected.
Package biblatex Info: Data encoding 'utf8' specified.
(biblatex) No need to reencode data.
\openout3 = `thesis.bcf'.
Package biblatex Info: Trying to load bibliographic data...
Package biblatex Info: ... file 'thesis.bbl' found.