-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.log
1083 lines (1021 loc) · 46.6 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.141592653-2.6-1.40.24 (TeX Live 2022) (preloaded format=pdflatex 2023.1.2) 6 JAN 2023 21:50
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**thesis.tex
(./thesis.tex
LaTeX2e <2022-11-01> patch level 1
L3 programming layer <2022-12-17> (./glasgowthesis.cls
Document Class: glasgowthesis
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/book.cls
Document Class: book 2022/07/02 v1.4n Standard LaTeX document class
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/bk12.clo
File: bk12.clo 2022/07/02 v1.4n Standard LaTeX file (size option)
)
\c@part=\count185
\c@chapter=\count186
\c@section=\count187
\c@subsection=\count188
\c@subsubsection=\count189
\c@paragraph=\count190
\c@subparagraph=\count191
\c@figure=\count192
\c@table=\count193
\abovecaptionskip=\skip48
\belowcaptionskip=\skip49
\bibindent=\dimen140
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
Package: fancyhdr 2022/11/09 v4.1 Extensive control of page headers and footers
\f@nch@headwidth=\skip50
\f@nch@O@elh=\skip51
\f@nch@O@erh=\skip52
\f@nch@O@olh=\skip53
\f@nch@O@orh=\skip54
\f@nch@O@elf=\skip55
\f@nch@O@erf=\skip56
\f@nch@O@olf=\skip57
\f@nch@O@orf=\skip58
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty
Package: fancyvrb 2022/06/06 4.5 verbatim text (tvz,hv)
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
\KV@toks@=\toks16
)
\FV@CodeLineNo=\count194
\FV@InFile=\read2
\FV@TabBox=\box51
\c@FancyVerbLine=\count195
\FV@StepNumber=\count196
\FV@OutFile=\write3
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/ifxetex.sty
Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2022/02/03 v1.0f TeX engine tests
)) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/ifluatex.sty
Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/fixltx2e.sty
Package: fixltx2e 2016/12/29 v2.1a fixes to LaTeX (obsolete)
Applying: [2015/01/01] Old fixltx2e package on input line 46.
Package fixltx2e Warning: fixltx2e is not required with releases after 2015
(fixltx2e) All fixes are now in the LaTeX kernel.
(fixltx2e) See the latexrelease package for details.
Already applied: [0000/00/00] Old fixltx2e package on input line 53.
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/inputenc.sty
Package: inputenc 2021/02/14 v1.3d Input encoding file
\inpenc@prehook=\toks17
\inpenc@posthook=\toks18
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/microtype/microtype.sty
Package: microtype 2022/06/23 v3.0f Micro-typographical refinements (RS)
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count197
)
\MT@toks=\toks19
\MT@tempbox=\box52
\MT@count=\count198
LaTeX Info: Redefining \noprotrusionifhmode on input line 1045.
LaTeX Info: Redefining \leftprotrusion on input line 1046.
LaTeX Info: Redefining \rightprotrusion on input line 1056.
LaTeX Info: Redefining \textls on input line 1234.
\MT@outer@kern=\dimen141
LaTeX Info: Redefining \textmicrotypecontext on input line 1858.
\MT@listname@count=\count199
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/microtype/microtype-pdftex.def
File: microtype-pdftex.def 2022/06/23 v3.0f Definitions specific to pdftex (RS)
LaTeX Info: Redefining \lsstyle on input line 900.
LaTeX Info: Redefining \lslig on input line 900.
\MT@outer@space=\skip59
)
Package microtype Info: Loading configuration file microtype.cfg.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/microtype/microtype.cfg
File: microtype.cfg 2022/06/23 v3.0f microtype main configuration file (RS)
)) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/color.sty
Package: color 2022/01/06 v1.3d Standard LaTeX Color (DPC)
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-cfg/color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: pdftex.def on input line 149.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-def/pdftex.def
File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/mathcolor.ltx)) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/framed/framed.sty
Package: framed 2011/10/22 v 0.96: framed or shaded text with page breaks
\OuterFrameSep=\skip60
\fb@frw=\dimen142
\fb@frh=\dimen143
\FrameRule=\dimen144
\FrameSep=\dimen145
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2020/01/02 v5.9 Page Geometry
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
)
\Gm@cnth=\count266
\Gm@cntv=\count267
\c@Gm@tempcnt=\count268
\Gm@bindingoffset=\dimen146
\Gm@wd@mp=\dimen147
\Gm@odd@mp=\dimen148
\Gm@even@mp=\dimen149
\Gm@layoutwidth=\dimen150
\Gm@layoutheight=\dimen151
\Gm@layouthoffset=\dimen152
\Gm@layoutvoffset=\dimen153
\Gm@dimlist=\toks20
))
defining Unicode char U+2212 (decimal 8722)
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR)
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 107.
)
\Gin@req@height=\dimen154
\Gin@req@width=\dimen155
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/latexsym.sty
Package: latexsym 1998/08/17 v2.2e Standard LaTeX package (lasy symbols)
\symlasy=\mathgroup4
LaTeX Font Info: Overwriting symbol font `lasy' in version `bold'
(Font) U/lasy/m/n --> U/lasy/b/n on input line 52.
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2022/04/08 v2.17n AMS math features
\@mathmargin=\skip61
For additional information on amsmath, use the `?' option.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2021/08/26 v2.01 AMS text
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks21
\ex@=\dimen156
)) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen157
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2022/04/08 v2.04 operator names
)
\inf@bad=\count269
LaTeX Info: Redefining \frac on input line 234.
\uproot@=\count270
\leftroot@=\count271
LaTeX Info: Redefining \overline on input line 399.
LaTeX Info: Redefining \colon on input line 410.
\classnum@=\count272
\DOTSCASE@=\count273
LaTeX Info: Redefining \ldots on input line 496.
LaTeX Info: Redefining \dots on input line 499.
LaTeX Info: Redefining \cdots on input line 620.
\Mathstrutbox@=\box53
\strutbox@=\box54
LaTeX Info: Redefining \big on input line 722.
LaTeX Info: Redefining \Big on input line 723.
LaTeX Info: Redefining \bigg on input line 724.
LaTeX Info: Redefining \Bigg on input line 725.
\big@size=\dimen158
LaTeX Font Info: Redeclaring font encoding OML on input line 743.
LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
\macc@depth=\count274
LaTeX Info: Redefining \bmod on input line 905.
LaTeX Info: Redefining \pmod on input line 910.
LaTeX Info: Redefining \smash on input line 940.
LaTeX Info: Redefining \relbar on input line 970.
LaTeX Info: Redefining \Relbar on input line 971.
\c@MaxMatrixCols=\count275
\dotsspace@=\muskip16
\c@parentequation=\count276
\dspbrk@lvl=\count277
\tag@help=\toks22
\row@=\count278
\column@=\count279
\maxfields@=\count280
\andhelp@=\toks23
\eqnshift@=\dimen159
\alignsep@=\dimen160
\tagshift@=\dimen161
\tagwidth@=\dimen162
\totwidth@=\dimen163
\lineht@=\dimen164
\@envbody=\toks24
\multlinegap=\skip62
\multlinetaggap=\skip63
\mathdisplay@stack=\toks25
LaTeX Info: Redefining \[ on input line 2953.
LaTeX Info: Redefining \] on input line 2954.
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\symAMSa=\mathgroup5
\symAMSb=\mathgroup6
LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
)) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amscls/amsthm.sty
Package: amsthm 2020/05/29 v2.20.6
\thm@style=\toks26
\thm@bodyfont=\toks27
\thm@headfont=\toks28
\thm@notefont=\toks29
\thm@headpunct=\toks30
\thm@preskip=\skip64
\thm@postskip=\skip65
\thm@headsep=\skip66
\dth@everypar=\toks31
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/longtable.sty
Package: longtable 2021-09-01 v4.17 Multi-page Table package (DPC)
\LTleft=\skip67
\LTright=\skip68
\LTpre=\skip69
\LTpost=\skip70
\LTchunksize=\count281
\LTcapwidth=\dimen165
\LT@head=\box55
\LT@firsthead=\box56
\LT@foot=\box57
\LT@lastfoot=\box58
\LT@gbox=\box59
\LT@cols=\count282
\LT@rows=\count283
\c@LT@tables=\count284
\c@LT@chunks=\count285
\LT@p@ftn=\toks32
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/booktabs/booktabs.sty
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen166
\lightrulewidth=\dimen167
\cmidrulewidth=\dimen168
\belowrulesep=\dimen169
\belowbottomsep=\dimen170
\aboverulesep=\dimen171
\abovetopsep=\dimen172
\cmidrulesep=\dimen173
\cmidrulekern=\dimen174
\defaultaddspace=\dimen175
\@cmidla=\count286
\@cmidlb=\count287
\@aboverulesep=\dimen176
\@belowrulesep=\dimen177
\@thisruleclass=\count288
\@lastruleclass=\count289
\@thisrulewidth=\dimen178
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/setspace/setspace.sty
Package: setspace 2022/12/04 v6.7b set line spacing
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/siunitx/siunitx.sty
Package: siunitx 2023-01-03 v3.2.0 A comprehensive (SI) units package
\l__siunitx_angle_tmp_dim=\dimen179
\l__siunitx_angle_marker_box=\box60
\l__siunitx_angle_unit_box=\box61
\l__siunitx_compound_count_int=\count290
\l__siunitx_number_exponent_fixed_int=\count291
\l__siunitx_number_min_decimal_int=\count292
\l__siunitx_number_min_integer_int=\count293
\l__siunitx_number_round_precision_int=\count294
\l__siunitx_number_lower_threshold_int=\count295
\l__siunitx_number_upper_threshold_int=\count296
\l__siunitx_number_group_first_int=\count297
\l__siunitx_number_group_size_int=\count298
\l__siunitx_number_group_minimum_int=\count299
\l__siunitx_table_tmp_box=\box62
\l__siunitx_table_tmp_dim=\dimen180
\l__siunitx_table_column_width_dim=\dimen181
\l__siunitx_table_integer_box=\box63
\l__siunitx_table_decimal_box=\box64
\l__siunitx_table_uncert_box=\box65
\l__siunitx_table_before_box=\box66
\l__siunitx_table_after_box=\box67
\l__siunitx_table_before_dim=\dimen182
\l__siunitx_table_carry_dim=\dimen183
\l__siunitx_unit_tmp_int=\count300
\l__siunitx_unit_position_int=\count301
\l__siunitx_unit_total_int=\count302
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/array.sty
Package: array 2022/09/04 v2.5g Tabular extension package (FMi)
\col@sep=\dimen184
\ar@mcellbox=\box68
\extrarowheight=\dimen185
\NC@list=\toks33
\extratabsurround=\skip71
\backup@length=\skip72
\ar@cellbox=\box69
)) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK)
(c:/Users/rmkja/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 227.
LaTeX Info: Redefining \color on input line 711.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/mathcolor.ltx)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1357.
Package xcolor Info: Model `RGB' extended on input line 1369.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376.
) (c:/Users/rmkja/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:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2022-11-13 v7.00u Hypertext links for LaTeX
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO)
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/infwarerr/infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/pdfescape/pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hycolor/hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/auxhook/auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2022-05-17 v2.50 Cross-referencing by name of section
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/refcount/refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
))
\c@section@level=\count303
)
\@linkdim=\dimen186
\Hy@linkcounter=\count304
\Hy@pagecounter=\count305
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2022-11-13 v7.00u Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/etexcmds/etexcmds.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count306
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2022-11-13 v7.00u Hyperref: PDF Unicode definition (HO)
Now handling font encoding PU ...
... no UTF-8 mapping file for font encoding PU
)
Package hyperref Info: Hyper figures OFF on input line 4162.
Package hyperref Info: Link nesting OFF on input line 4167.
Package hyperref Info: Hyper index ON on input line 4170.
Package hyperref Info: Plain pages OFF on input line 4177.
Package hyperref Info: Backreferencing OFF on input line 4182.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4410.
\c@Hy@tempcnt=\count307
LaTeX Info: Redefining \url on input line 4748.
\XeTeXLinkMargin=\dimen187
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO)
))
\Fld@menulength=\count308
\Field@Width=\dimen188
\Fld@charsize=\dimen189
Package hyperref Info: Hyper figures OFF on input line 6027.
Package hyperref Info: Link nesting OFF on input line 6032.
Package hyperref Info: Hyper index ON on input line 6035.
Package hyperref Info: backreferencing OFF on input line 6042.
Package hyperref Info: Link coloring OFF on input line 6047.
Package hyperref Info: Link coloring with OCG OFF on input line 6052.
Package hyperref Info: PDF/A mode OFF on input line 6057.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/atbegshi-ltx.sty
Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
package with kernel methods
)
\Hy@abspage=\count309
\c@Item=\count310
\c@Hfootnote=\count311
)
Package hyperref Info: Driver (autodetected): hpdftex.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2022-11-13 v7.00u Hyperref driver for pdfTeX
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/atveryend-ltx.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend package
with kernel methods
)
\Fld@listcount=\count312
\c@bookmark@seq@number=\count313
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 285.
)
\Hy@SectionHShift=\skip73
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/lmodern.sty
Package: lmodern 2015/05/01 v1.6.1 Latin Modern Fonts
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 23.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 27.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/rotating.sty
Package: rotating 2016/08/11 v2.16d rotated objects in LaTeX
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC)
)
\c@r@tfl@t=\count314
\rotFPtop=\skip74
\rotFPbot=\skip75
\rot@float@box=\box70
\rot@mess@toks=\toks34
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count315
\float@exts=\toks35
\float@box=\box71
\@float@everytoks=\toks36
\@floatcapt=\box72
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/lscape.sty
Package: lscape 2020/05/28 v3.02 Landscape Pages (DPC)
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/afterpage.sty
Package: afterpage 2014/10/28 v1.08 After-Page Package (DPC)
\AP@output=\toks37
\AP@partial=\box73
\AP@footins=\box74
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/indentfirst.sty
Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC)
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tocloft/tocloft.sty
Package: tocloft 2017/08/31 v2.3i parameterised ToC, etc., typesetting
Package tocloft Info: The document has chapter divisions on input line 51.
\cftparskip=\skip76
\cftbeforetoctitleskip=\skip77
\cftaftertoctitleskip=\skip78
\cftbeforepartskip=\skip79
\cftpartnumwidth=\skip80
\cftpartindent=\skip81
\cftbeforechapskip=\skip82
\cftchapindent=\skip83
\cftchapnumwidth=\skip84
\cftbeforesecskip=\skip85
\cftsecindent=\skip86
\cftsecnumwidth=\skip87
\cftbeforesubsecskip=\skip88
\cftsubsecindent=\skip89
\cftsubsecnumwidth=\skip90
\cftbeforesubsubsecskip=\skip91
\cftsubsubsecindent=\skip92
\cftsubsubsecnumwidth=\skip93
\cftbeforeparaskip=\skip94
\cftparaindent=\skip95
\cftparanumwidth=\skip96
\cftbeforesubparaskip=\skip97
\cftsubparaindent=\skip98
\cftsubparanumwidth=\skip99
\cftbeforeloftitleskip=\skip100
\cftafterloftitleskip=\skip101
\cftbeforefigskip=\skip102
\cftfigindent=\skip103
\cftfignumwidth=\skip104
\c@lofdepth=\count316
\c@lotdepth=\count317
\cftbeforelottitleskip=\skip105
\cftafterlottitleskip=\skip106
\cftbeforetabskip=\skip107
\cfttabindent=\skip108
\cfttabnumwidth=\skip109
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/breakcites/breakcites.sty)
Package hyperref Info: Option `colorlinks' set `true' on input line 43.
Package hyperref Info: Option `breaklinks' set `true' on input line 43.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/psnfss/helvet.sty
Package: helvet 2020/03/25 PSNFSS-v9.3 (WaS)
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
LaTeX Font Info: Trying to load font information for T1+phv on input line 112.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/psnfss/t1phv.fd
File: t1phv.fd 2020/03/25 scalable font definitions for T1/phv.
)
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 11.39996pt on input line 112.
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/caption.sty
Package: caption 2022/03/01 v3.6b Customizing captions (AR)
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/caption3.sty
Package: caption3 2022/03/17 v2.3b caption3 kernel (AR)
\caption@tempdima=\dimen190
\captionmargin=\dimen191
\caption@leftmargin=\dimen192
\caption@rightmargin=\dimen193
\caption@width=\dimen194
\caption@indent=\dimen195
\caption@parindent=\dimen196
\caption@hangindent=\dimen197
Package caption Info: Standard document class detected.
)
\c@caption@flags=\count318
\c@continuedfloat=\count319
Package caption Info: float package is loaded.
Package caption Info: hyperref package is loaded.
Package caption Info: longtable package is loaded.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/ltcaption.sty
Package: ltcaption 2021/01/08 v1.4c longtable captions (AR)
)
Package caption Info: rotating package is loaded.
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lineno/lineno.sty
Package: lineno 2022/07/30 line numbers on paragraphs v5.0
\linenopenalty=\count320
\output=\toks38
\linenoprevgraf=\count321
\linenumbersep=\dimen198
\linenumberwidth=\dimen199
\c@linenumber=\count322
\c@pagewiselinenumber=\count323
\c@LN@truepage=\count324
\c@internallinenumber=\count325
\c@internallinenumbers=\count326
\quotelinenumbersep=\dimen256
\bframerule=\dimen257
\bframesep=\dimen258
\bframebox=\box75
\linenoamsmath@ams@eqpen=\count327
LaTeX Info: Redefining \\ on input line 3114.
) (c:/Users/rmkja/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=\skip110
\multirow@cntb=\count328
\multirow@dima=\skip111
\bigstrutjot=\dimen259
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/wrapfig/wrapfig.sty
\wrapoverhang=\dimen260
\WF@size=\dimen261
\c@WF@wrappedlines=\count329
\WF@box=\box76
\WF@everypar=\toks39
Package: wrapfig 2003/01/31 v 3.6
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/colortbl/colortbl.sty
Package: colortbl 2022/06/20 v1.0f Color table columns (DPC)
\everycr=\toks40
\minrowclearance=\skip112
\rownum=\count330
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/pdflscape/pdflscape.sty
Package: pdflscape 2022-10-27 v0.13 Display of landscape pages in PDF
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/pdflscape/pdflscape-nometadata.sty
Package: pdflscape-nometadata 2022-10-28 v0.13 Display of landscape pages in PDF (HO)
Package pdflscape Info: Auto-detected driver: pdftex on input line 81.
)) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tabu/tabu.sty
Package: tabu 2019/01/11 v2.9 - flexible LaTeX tabulars (FC+tabu-fixed)
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/varwidth/varwidth.sty
Package: varwidth 2009/03/30 ver 0.92; Variable-width minipages
\@vwid@box=\box77
\sift@deathcycles=\count331
\@vwid@loff=\dimen262
\@vwid@roff=\dimen263
)
\c@taburow=\count332
\tabu@nbcols=\count333
\tabu@cnt=\count334
\tabu@Xcol=\count335
\tabu@alloc=\count336
\tabu@nested=\count337
\tabu@target=\dimen264
\tabu@spreadtarget=\dimen265
\tabu@naturalX=\dimen266
\tabucolX=\dimen267
\tabu@Xsum=\dimen268
\extrarowdepth=\dimen269
\abovetabulinesep=\dimen270
\belowtabulinesep=\dimen271
\tabustrutrule=\dimen272
\tabu@thebody=\toks41
\tabu@footnotes=\toks42
\tabu@box=\box78
\tabu@arstrutbox=\box79
\tabu@hleads=\box80
\tabu@vleads=\box81
\tabu@cellskip=\skip113
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/threeparttable/threeparttable.sty
Package: threeparttable 2003/06/13 v 3.0
\@tempboxb=\box82
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/threeparttablex/threeparttablex.sty
Package: threeparttablex 2013/07/23 v0.3 by daleif
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/environ/environ.sty
Package: environ 2014/05/04 v0.3 A new way to define environments
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/trimspaces/trimspaces.sty
Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
))
\TPTL@width=\skip114
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/ulem/ulem.sty
\UL@box=\box83
\UL@hyphenbox=\box84
\UL@skip=\skip115
\UL@hook=\toks43
\UL@height=\dimen273
\UL@pe=\count338
\UL@pixel=\dimen274
\ULC@box=\box85
Package: ulem 2019/11/18
\ULdepth=\dimen275
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/makecell/makecell.sty
Package: makecell 2009/08/03 V0.1e Managing of Tab Column Heads and Cells
\rotheadsize=\dimen276
\c@nlinenum=\count339
\TeXr@lab=\toks44
)
\cslhangindent=\skip116
\csllabelwidth=\skip117
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count340
\calc@Bcount=\count341
\calc@Adimen=\dimen277
\calc@Bdimen=\dimen278
\calc@Askip=\skip118
\calc@Bskip=\skip119
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count342
\calc@Cskip=\skip120
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
File: l3backend-pdftex.def 2022-10-26 L3 backend support: PDF output (pdfTeX)
\l__color_backend_stack_int=\count343
\l__pdf_internal_box=\box86
) (./thesis.aux)
\openout1 = `thesis.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 321.
LaTeX Font Info: ... okay on input line 321.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 321.
LaTeX Font Info: ... okay on input line 321.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 321.
LaTeX Font Info: ... okay on input line 321.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 321.
LaTeX Font Info: ... okay on input line 321.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 321.
LaTeX Font Info: ... okay on input line 321.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 321.
LaTeX Font Info: ... okay on input line 321.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 321.
LaTeX Font Info: ... okay on input line 321.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 321.
LaTeX Font Info: ... okay on input line 321.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 321.
LaTeX Font Info: ... okay on input line 321.
LaTeX Info: Redefining \microtypecontext on input line 321.
Package microtype Info: Applying patch `item' on input line 321.
Package microtype Info: Applying patch `toc' on input line 321.
Package microtype Info: Applying patch `eqnum' on input line 321.
Package microtype Info: Applying patch `footnote' on input line 321.
Package microtype Info: Generating PDF output.
Package microtype Info: Character protrusion enabled (level 2).
Package microtype Info: Using protrusion set `basicmath'.
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 `alltext-nott'.
LaTeX Info: Redefining \showhyphens on input line 321.
Package microtype Info: No adjustment of tracking.
Package microtype Info: No adjustment of interword spacing.
Package microtype Info: No adjustment of character kerning.
Package microtype Info: Loading generic protrusion settings for font family
(microtype) `phv' (encoding: T1).
(microtype) For optimal results, create family-specific settings.
(microtype) See the microtype manual for details.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count344
\scratchdimen=\dimen279
\scratchbox=\box87
\nofMPsegments=\count345
\nofMParguments=\count346
\everyMPshowfont=\toks45
\MPscratchCnt=\count347
\MPscratchDim=\dimen280
\MPnumerator=\count348
\makeMPintoPDFobject=\count349
\everyMPtoPDFconversion=\toks46
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-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 485.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live
))
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: <default>
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes: twoside
* h-part:(L,W,R)=(113.81102pt, 457.80486pt, 42.67912pt)
* v-part:(T,H,B)=(51.21504pt, 692.5399pt, 51.21504pt)
* \paperwidth=614.295pt
* \paperheight=794.96999pt
* \textwidth=457.80486pt
* \textheight=692.5399pt
* \oddsidemargin=41.54103pt
* \evensidemargin=42.67912pt
* \topmargin=-52.92874pt
* \headheight=12.0pt
* \headsep=19.8738pt
* \topskip=12.0pt
* \footskip=30.0pt
* \marginparwidth=98.0pt
* \marginparsep=7.0pt
* \columnsep=10.0pt
* \skip\footins=10.8pt 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 hyperref Info: Link coloring ON on input line 321.
(./thesis.out) (./thesis.out)
\@outlinefile=\write4
\openout4 = `thesis.out'.
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: threeparttable package is loaded.
Package caption Info: wrapfig package is loaded.
Package caption Info: End \AtBeginDocument code.
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 13.29996pt on input line 323.
<figure/gla_logo.pdf, id=130, 1487.5575pt x 544.0325pt>
File: figure/gla_logo.pdf Graphic file (type pdf)
<use figure/gla_logo.pdf>
Package pdftex.def Info: figure/gla_logo.pdf used on input line 323.
(pdftex.def) Requested size: 208.25662pt x 76.16403pt.
LaTeX Font Info: Font shape `T1/phv/b/n' will be
(Font) scaled to size 13.29996pt on input line 323.
LaTeX Font Info: Font shape `T1/phv/b/n' will be
(Font) scaled to size 23.63593pt on input line 323.
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 13.67995pt on input line 323.
[1
{c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-var/fonts/map/pdftex/updmap/pdftex.map} <./figure/gla_logo.pdf>] [2
] [2
]
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 23.63593pt on input line 329.
LaTeX Font Info: Trying to load font information for OT1+lmr on input line 334.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/ot1lmr.fd
File: ot1lmr.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/microtype/mt-cmr.cfg
File: mt-cmr.cfg 2013/05/19 v2.2 microtype config. file: Computer Modern Roman (RS)
)
LaTeX Font Info: Trying to load font information for OML+lmm on input line 334.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/omllmm.fd
File: omllmm.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OMS+lmsy on input line 334.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/omslmsy.fd
File: omslmsy.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OMX+lmex on input line 334.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/omxlmex.fd
File: omxlmex.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
)
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <12> on input line 334.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <8> on input line 334.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <6> on input line 334.
LaTeX Font Info: Trying to load font information for U+lasy on input line 334.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/ulasy.fd
File: ulasy.fd 1998/08/17 v2.2e LaTeX symbol font definitions
)
LaTeX Font Info: Trying to load font information for U+msa on input line 334.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/microtype/mt-msa.cfg
File: mt-msa.cfg 2006/02/04 v1.1 microtype config. file: AMS symbols (a) (RS)
)
LaTeX Font Info: Trying to load font information for U+msb on input line 334.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
) (c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/microtype/mt-msb.cfg
File: mt-msb.cfg 2005/06/01 v1.0 microtype config. file: AMS symbols (b) (RS)
)
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 7.59998pt on input line 334.
[3] [4
] [5] [6
] [7] [8
]
LaTeX Font Info: Trying to load font information for T1+lmtt on input line 366.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/t1lmtt.fd
File: t1lmtt.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for TS1+lmtt on input line 368.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/ts1lmtt.fd
File: ts1lmtt.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
) [9] [10
]
LaTeX Font Info: Font shape `T1/phv/b/n' will be
(Font) scaled to size 11.39996pt on input line 382.
LaTeX Warning: Reference `chapter4' on page xi undefined on input line 382.
[11] [12
]
LaTeX Font Info: Font shape `T1/phv/m/it' in size <12> not available
(Font) Font shape `T1/phv/m/sl' tried instead on input line 393.
LaTeX Font Info: Font shape `T1/phv/m/sl' will be
(Font) scaled to size 11.39996pt on input line 393.
[13] [14]
pdfTeX warning (ext4): destination with the same identifier (name{page.xiv}) has been already used, duplicate ignored
<to be read again>
\relax
l.427 \end{publications}
[14
] (./thesis.toc [15])
\tf@toc=\write5
\openout5 = `thesis.toc'.
(./thesis.lot)
\tf@lot=\write6
\openout6 = `thesis.lot'.
(./thesis.lof)
\tf@lof=\write7
\openout7 = `thesis.lof'.
[16] [17
]
pdfTeX warning (ext4): destination with the same identifier (name{page.xvii}) has been already used, duplicate ignored
<to be read again>
\relax
l.462 \end{abbreviations}
[17
] [18
]
Chapter 1.
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 16.41594pt on input line 479.
LaTeX Font Info: Font shape `T1/phv/b/n' will be
(Font) scaled to size 16.41594pt on input line 479.
LaTeX Font Info: Trying to load font information for TS1+phv on input line 485.
(c:/Users/rmkja/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/psnfss/ts1phv.fd
File: ts1phv.fd 2020/03/25 scalable font definitions for TS1/phv.
)
LaTeX Font Info: Font shape `TS1/phv/m/n' will be
(Font) scaled to size 11.39996pt on input line 485.
pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.496 I
tem 2 [1
]
pdfTeX warning (ext4): destination with the same identifier (name{page.2}) has been already used, duplicate ignored
<to be read again>
\relax
l.536 \begin{Shaded}
[2] [3]
<thesis_files/figure-latex/pressure-1.pdf, id=322, 469.755pt x 325.215pt>
File: thesis_files/figure-latex/pressure-1.pdf Graphic file (type pdf)
<use thesis_files/figure-latex/pressure-1.pdf>
Package pdftex.def Info: thesis_files/figure-latex/pressure-1.pdf used on input line 574.
(pdftex.def) Requested size: 469.75386pt x 325.2142pt.
Overfull \hbox (11.949pt too wide) in paragraph at lines 574--575
[][]
[]
[4 <./thesis_files/figure-latex/pressure-1.pdf>]
LaTeX Font Info: Font shape `T1/phv/b/it' in size <12> not available
(Font) Font shape `T1/phv/b/sl' tried instead on input line 611.
LaTeX Font Info: Font shape `T1/phv/b/sl' will be
(Font) scaled to size 11.39996pt on input line 611.
[5]
LaTeX Font Info: Font shape `T1/lmtt/bx/n' in size <12> not available
(Font) Font shape `T1/lmtt/b/n' tried instead on input line 629.
[6] [7] [8
]
<thesis_files/figure-latex/march3plot-1.pdf, id=359, 433.62pt x 216.81pt>
File: thesis_files/figure-latex/march3plot-1.pdf Graphic file (type pdf)
<use thesis_files/figure-latex/march3plot-1.pdf>
Package pdftex.def Info: thesis_files/figure-latex/march3plot-1.pdf used on input line 727.
(pdftex.def) Requested size: 433.61894pt x 216.80946pt.
[9] [10 <./thesis_files/figure-latex/march3plot-1.pdf>]
Chapter 2.
[11
]
LaTeX Font Info: Font shape `T1/phv/b/n' will be
(Font) scaled to size 13.67995pt on input line 775.
[12] [13] [14
]
Chapter 3.
[15]
<data/chapter3/reed.jpg, id=432, 250.9375pt x 251.94125pt>
File: data/chapter3/reed.jpg Graphic file (type jpg)
<use data/chapter3/reed.jpg>
Package pdftex.def Info: data/chapter3/reed.jpg used on input line 831.
(pdftex.def) Requested size: 250.77698pt x 251.79454pt.
[16
<./data/chapter3/reed.jpg>] [17]
LaTeX Warning: Reference `rmd-basics' on page 18 undefined on input line 837.
<thesis_files/figure-latex/delaysboxplot-1.pdf, id=444, 433.62pt x 325.215pt>
File: thesis_files/figure-latex/delaysboxplot-1.pdf Graphic file (type pdf)
<use thesis_files/figure-latex/delaysboxplot-1.pdf>
Package pdftex.def Info: thesis_files/figure-latex/delaysboxplot-1.pdf used on input line 848.
(pdftex.def) Requested size: 433.61894pt x 325.2142pt.
[18
<./thesis_files/figure-latex/delaysboxplot-1.pdf>]
<data/chapter3/subdivision.pdf, id=457, 220.825pt x 89.33376pt>
File: data/chapter3/subdivision.pdf Graphic file (type pdf)
<use data/chapter3/subdivision.pdf>
Package pdftex.def Info: data/chapter3/subdivision.pdf used on input line 859.
(pdftex.def) Requested size: 165.61833pt x 67.00014pt.