-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththesis.log
3358 lines (2230 loc) · 98.3 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.20 (TeX Live 2019/W32TeX) (preloaded format=pdflatex 2020.3.30) 9 JUL 2020 10:40
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**thesis.tex
(./thesis.tex
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-02-25> (./reedthesis.cls
Document Class: reedthesis 2004/01/27 The Reed College Thesis Class
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/book.cls
Document Class: book 2019/12/20 v1.4l Standard LaTeX document class
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/bk12.clo
File: bk12.clo 2019/12/20 v1.4l Standard LaTeX file (size option)
)
\c@part=\count167
\c@chapter=\count168
\c@section=\count169
\c@subsection=\count170
\c@subsubsection=\count171
\c@paragraph=\count172
\c@subparagraph=\count173
\c@figure=\count174
\c@table=\count175
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen134
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/fancyhdr/fancyh
dr.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/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/fancyvrb/fancyv
rb.sty
Package: fancyvrb 2020/01/13 v3.5 verbatim text (tvz,hv)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/keyval
.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks15
)
\FV@CodeLineNo=\count176
\FV@InFile=\read2
\FV@TabBox=\box45
\c@FancyVerbLine=\count177
\FV@StepNumber=\count178
\FV@OutFile=\write3
)
(c:/Users/alexyshr/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/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/iftex.s
ty
Package: iftex 2019/11/07 v1.0c TeX engine tests
))
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/ifluate
x.sty
Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/fontawesome/fon
tawesome.sty
Package: fontawesome 2016/05/15 v4.6.3.1 font awesome icons
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/fontawesome/fon
tawesomesymbols-generic.tex)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/fontawesome/fon
tawesomesymbols-pdftex.tex))
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/fixltx2e.s
ty
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/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/fontenc.st
y
Package: fontenc 2020/02/11 v2.0o Standard LaTeX package
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/inputenc.s
ty
Package: inputenc 2018/08/11 v1.3c Input encoding file
\inpenc@prehook=\toks16
\inpenc@posthook=\toks17
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/upquote/upquote
.sty
Package: upquote 2012/04/19 v1.3 upright-quote and grave-accent glyphs in verba
tim
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/textcomp.s
ty
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
))
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/color.
sty
Package: color 2019/11/23 v1.2a Standard LaTeX Color (DPC)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-cfg/co
lor.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: pdftex.def on input line 147.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-def/pd
ftex.def
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
))
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/framed/framed.s
ty
Package: framed 2011/10/22 v 0.96: framed or shaded text with page breaks
\OuterFrameSep=\skip58
\fb@frw=\dimen135
\fb@frh=\dimen136
\FrameRule=\dimen137
\FrameSep=\dimen138
))
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/graphi
cx.sty
Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/graphi
cs.sty
Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/trig.s
ty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-cfg/gr
aphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 105.
)
\Gin@req@height=\dimen139
\Gin@req@width=\dimen140
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/latexsym.s
ty
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/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsmath
.sty
Package: amsmath 2020/01/20 v2.17e AMS math features
\@mathmargin=\skip59
For additional information on amsmath, use the `?' option.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amstext
.sty
Package: amstext 2000/06/29 v2.01 AMS text
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsgen.
sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks18
\ex@=\dimen141
))
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsbsy.
sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen142
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsopn.
sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count179
LaTeX Info: Redefining \frac on input line 227.
\uproot@=\count180
\leftroot@=\count181
LaTeX Info: Redefining \overline on input line 389.
\classnum@=\count182
\DOTSCASE@=\count183
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@=\box46
\strutbox@=\box47
\big@size=\dimen143
LaTeX Font Info: Redeclaring font encoding OML on input line 733.
LaTeX Font Info: Redeclaring font encoding OMS on input line 734.
\macc@depth=\count184
\c@MaxMatrixCols=\count185
\dotsspace@=\muskip16
\c@parentequation=\count186
\dspbrk@lvl=\count187
\tag@help=\toks19
\row@=\count188
\column@=\count189
\maxfields@=\count190
\andhelp@=\toks20
\eqnshift@=\dimen144
\alignsep@=\dimen145
\tagshift@=\dimen146
\tagwidth@=\dimen147
\totwidth@=\dimen148
\lineht@=\dimen149
\@envbody=\toks21
\multlinegap=\skip60
\multlinetaggap=\skip61
\mathdisplay@stack=\toks22
LaTeX Info: Redefining \[ on input line 2859.
LaTeX Info: Redefining \] on input line 2860.
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/amssym
b.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/amsfon
ts.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/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amscls/amsthm.s
ty
Package: amsthm 2017/10/31 v2.20.4
\thm@style=\toks23
\thm@bodyfont=\toks24
\thm@headfont=\toks25
\thm@notefont=\toks26
\thm@headpunct=\toks27
\thm@preskip=\skip62
\thm@postskip=\skip63
\thm@headsep=\skip64
\dth@everypar=\toks28
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/longtable
.sty
Package: longtable 2020/01/07 v4.13 Multi-page Table package (DPC)
\LTleft=\skip65
\LTright=\skip66
\LTpre=\skip67
\LTpost=\skip68
\LTchunksize=\count191
\LTcapwidth=\dimen150
\LT@head=\box48
\LT@firsthead=\box49
\LT@foot=\box50
\LT@lastfoot=\box51
\LT@cols=\count192
\LT@rows=\count193
\c@LT@tables=\count194
\c@LT@chunks=\count195
\LT@p@ftn=\toks29
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/booktabs/bookta
bs.sty
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen151
\lightrulewidth=\dimen152
\cmidrulewidth=\dimen153
\belowrulesep=\dimen154
\belowbottomsep=\dimen155
\aboverulesep=\dimen156
\abovetopsep=\dimen157
\cmidrulesep=\dimen158
\cmidrulekern=\dimen159
\defaultaddspace=\dimen160
\@cmidla=\count196
\@cmidlb=\count197
\@aboverulesep=\dimen161
\@belowrulesep=\dimen162
\@thisruleclass=\count198
\@lastruleclass=\count199
\@thisrulewidth=\dimen163
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/setspace/setspa
ce.sty
Package: setspace 2011/12/19 v6.7a set line spacing
) (./chemarr.sty
Package: chemarr 2001/06/22 v1.1 Chemical reaction arrows (HO)
) (c:/Users/alexyshr/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/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/xurl/xurl.sty
Package: xurl 2020/01/24 v 0.09 modify URL breaks
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/hyperr
ef.sty
Package: hyperref 2020/01/14 v7.00d Hypertext links for LaTeX
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/ltxcmds/ltxcm
ds.sty
Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO)
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/pdftexcmds/pdft
excmds.sty
Package: pdftexcmds 2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/infwarerr/inf
warerr.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/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/kvsetkeys/kvs
etkeys.sty
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/kvdefinekeys/
kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/oberdiek/pdfe
scape.sty
Package: pdfescape 2016/05/16 v1.14 Implements pdfTeX's escape features (HO)
)
(c:/Users/alexyshr/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/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/letltxmacro/let
ltxmacro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/auxhook/auxhook
.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/kvoptions/kvopt
ions.sty
Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO)
)
\@linkdim=\dimen164
\Hy@linkcounter=\count266
\Hy@pagecounter=\count267
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/pd1enc
.def
File: pd1enc.def 2020/01/14 v7.00d Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/intcalc/intca
lc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/etexcmds/etex
cmds.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count268
\pdfmajorversion=\count269
Package hyperref Info: Hyper figures OFF on input line 4547.
Package hyperref Info: Link nesting OFF on input line 4552.
Package hyperref Info: Hyper index ON on input line 4555.
Package hyperref Info: Plain pages OFF on input line 4562.
Package hyperref Info: Backreferencing OFF on input line 4567.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4800.
\c@Hy@tempcnt=\count270
LaTeX Info: Redefining \url on input line 5159.
\XeTeXLinkMargin=\dimen165
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/bitset/bitset
.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/bigintcalc/bi
gintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count271
\Field@Width=\dimen166
\Fld@charsize=\dimen167
Package hyperref Info: Hyper figures OFF on input line 6430.
Package hyperref Info: Link nesting OFF on input line 6435.
Package hyperref Info: Hyper index ON on input line 6438.
Package hyperref Info: backreferencing OFF on input line 6445.
Package hyperref Info: Link coloring OFF on input line 6450.
Package hyperref Info: Link coloring with OCG OFF on input line 6455.
Package hyperref Info: PDF/A mode OFF on input line 6460.
LaTeX Info: Redefining \ref on input line 6500.
LaTeX Info: Redefining \pageref on input line 6504.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/atbegshi/atbe
gshi.sty
Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO)
)
\Hy@abspage=\count272
\c@Item=\count273
\c@Hfootnote=\count274
)
Package hyperref Info: Driver (autodetected): hpdftex.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/hpdfte
x.def
File: hpdftex.def 2020/01/14 v7.00d Hyperref driver for pdfTeX
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/atveryend/atver
yend.sty
Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO)
Package atveryend Info: \enddocument detected (standard20110627).
)
\Fld@listcount=\count275
\c@bookmark@seq@number=\count276
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/oberdiek/rerunf
ilecheck.sty
Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/oberdiek/uniq
uecounter.sty
Package: uniquecounter 2016/05/16 v1.3 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
82.
)
\Hy@SectionHShift=\skip69
)
Package hyperref Info: Option `breaklinks' set `true' on input line 44.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/lmodern.sty
Package: lmodern 2009/10/30 v1.6 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/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count277
\float@exts=\toks30
\float@box=\box52
\@float@everytoks=\toks31
\@floatcapt=\box53
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/rotati
ng.sty
Package: rotating 2016/08/11 v2.16d rotated objects in LaTeX
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
\c@r@tfl@t=\count278
\rotFPtop=\skip70
\rotFPbot=\skip71
\rot@float@box=\box54
\rot@mess@toks=\toks32
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/caption
.sty
Package: caption 2020/01/03 v3.4h Customizing captions (AR)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/caption
3.sty
Package: caption3 2020/01/03 v1.8h caption3 kernel (AR)
Package caption3 Info: TeX engine: e-TeX on input line 61.
\captionmargin=\dimen168
\captionmargin@=\dimen169
\captionwidth=\dimen170
\caption@tempdima=\dimen171
\caption@indent=\dimen172
\caption@parindent=\dimen173
\caption@hangindent=\dimen174
Package caption Info: Standard document class detected.
)
\c@caption@flags=\count279
\c@continuedfloat=\count280
Package caption Info: float package is loaded.
Package caption Info: hyperref package is loaded.
Package caption Info: longtable package is loaded.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/ltcapti
on.sty
Package: ltcaption 2018/08/26 v1.4a longtable captions (AR)
)
Package caption Info: rotating package is loaded.
)
Package color Info: Redefining color shadecolor on input line 86.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/parskip/parskip
.sty
Package: parskip 2020-01-22 v2.0d non-zero parskip adjustments
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/etoolbox/etoolb
ox.sty
Package: etoolbox 2019/09/21 v2.5h e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count281
))
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/array.sty
Package: array 2019/08/31 v2.4l Tabular extension package (FMi)
\col@sep=\dimen175
\ar@mcellbox=\box55
\extrarowheight=\dimen176
\NC@list=\toks33
\extratabsurround=\skip72
\backup@length=\skip73
\ar@cellbox=\box56
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/multirow/multir
ow.sty
Package: multirow 2019/05/31 v2.5 Span multiple rows of a table
\multirow@colwidth=\skip74
\multirow@cntb=\count282
\multirow@dima=\skip75
\bigstrutjot=\dimen177
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/wrapfig/wrapfig
.sty
\wrapoverhang=\dimen178
\WF@size=\dimen179
\c@WF@wrappedlines=\count283
\WF@box=\box57
\WF@everypar=\toks34
Package: wrapfig 2003/01/31 v 3.6
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/colortbl/colort
bl.sty
Package: colortbl 2020/01/04 v1.0e Color table columns (DPC)
\everycr=\toks35
\minrowclearance=\skip76
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/oberdiek/pdflsc
ape.sty
Package: pdflscape 2016/05/14 v0.11 Display of landscape pages in PDF (HO)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/lscape
.sty
Package: lscape 2000/10/22 v3.01 Landscape Pages (DPC)
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/ifpdf.s
ty
Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead.
)
Package pdflscape Info: Auto-detected driver: pdftex on input line 81.
) (c:/Users/alexyshr/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/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/varwidth/varwid
th.sty
Package: varwidth 2009/03/30 ver 0.92; Variable-width minipages
\@vwid@box=\box58
\sift@deathcycles=\count284
\@vwid@loff=\dimen180
\@vwid@roff=\dimen181
)
\c@taburow=\count285
\tabu@nbcols=\count286
\tabu@cnt=\count287
\tabu@Xcol=\count288
\tabu@alloc=\count289
\tabu@nested=\count290
\tabu@target=\dimen182
\tabu@spreadtarget=\dimen183
\tabu@naturalX=\dimen184
\tabucolX=\dimen185
\tabu@Xsum=\dimen186
\extrarowdepth=\dimen187
\abovetabulinesep=\dimen188
\belowtabulinesep=\dimen189
\tabustrutrule=\dimen190
\tabu@thebody=\toks36
\tabu@footnotes=\toks37
\tabu@box=\box59
\tabu@arstrutbox=\box60
\tabu@hleads=\box61
\tabu@vleads=\box62
\tabu@cellskip=\skip77
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/threeparttable/
threeparttable.sty
Package: threeparttable 2003/06/13 v 3.0
\@tempboxb=\box63
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/threeparttablex
/threeparttablex.sty
Package: threeparttablex 2013/07/23 v0.3 by daleif
(c:/Users/alexyshr/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/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/trimspaces/trim
spaces.sty
Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
))
\TPTL@width=\skip78
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/ulem/ulem.sty
\UL@box=\box64
\UL@hyphenbox=\box65
\UL@skip=\skip79
\UL@hook=\toks38
\UL@height=\dimen191
\UL@pe=\count291
\UL@pixel=\dimen192
\ULC@box=\box66
Package: ulem 2019/11/18
\ULdepth=\dimen193
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/makecell/makece
ll.sty
Package: makecell 2009/08/03 V0.1e Managing of Tab Column Heads and Cells
\rotheadsize=\dimen194
\c@nlinenum=\count292
\TeXr@lab=\toks39
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/xcolor/xcolor.s
ty
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-cfg/co
lor.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: pdftex.def on input line 225.
LaTeX Info: Redefining \color on input line 709.
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/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/l3backend/l3bac
kend-pdfmode.def
File: l3backend-pdfmode.def 2020-02-23 L3 backend support: PDF mode
\l__kernel_color_stack_int=\count293
\l__pdf_internal_box=\box67
) (./thesis.aux)
\openout1 = `thesis.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 269.
LaTeX Font Info: ... okay on input line 269.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 269.
LaTeX Font Info: ... okay on input line 269.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 269.
LaTeX Font Info: ... okay on input line 269.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 269.
LaTeX Font Info: ... okay on input line 269.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 269.
LaTeX Font Info: ... okay on input line 269.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 269.
LaTeX Font Info: ... okay on input line 269.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 269.
LaTeX Font Info: ... okay on input line 269.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 269.
LaTeX Font Info: ... okay on input line 269.
LaTeX Font Info: Trying to load font information for T1+lmr on input line 26
9.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/t1lmr.fd
File: t1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/oberdiek/epstop
df-base.sty
Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/grfext/grfext.s
ty
Package: grfext 2019/12/03 v1.3 Manage graphics extensions (HO)
)
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
38.
Package grfext Info: Graphics extension search list:
(grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPE
G,.JBIG2,.JB2,.eps]
(grfext) \AppendGraphicsExtensions on input line 456.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/latexconfig/eps
topdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
Package Fancyhdr Warning: \fancyhead's `E' option without twoside option is use
less on input line 269.
Package Fancyhdr Warning: \fancyhead's `E' option without twoside option is use
less on input line 269.
\AtBeginShipoutBox=\box68
Package hyperref Info: Link coloring OFF on input line 269.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/namere
f.sty
Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/oberdiek/refcou
nt.sty
Package: refcount 2016/05/16 v3.5 Data extraction from label references (HO)
)
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/gettitlestrin
g/gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
)
\c@section@level=\count294
)
LaTeX Info: Redefining \ref on input line 269.
LaTeX Info: Redefining \pageref on input line 269.
LaTeX Info: Redefining \nameref on input line 269.
(./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: Trying to load font information for U+fontawesometwo on inp
ut line 273.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/fontawesome/ufo
ntawesometwo.fd
File: ufontawesometwo.fd 2016/05/22 Font definitions for U/fontawesometwo.
)
<Figure/logos.png, id=325, 859.2903pt x 125.0271pt>
File: Figure/logos.png Graphic file (type png)
<use Figure/logos.png>
Package pdftex.def Info: Figure/logos.png used on input line 273.
(pdftex.def) Requested size: 375.80542pt x 54.68013pt.
[1
Non-PDF special ignored!
<special> !% Reed College LaTeX Thesis Class 2001/12/04 SN
Non-PDF special ignored!
<special> rawpostscript % Reed College LaTeX Thesis Class 2001/12/04 SN
{c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-var/fonts/map/pdftex/updmap/pd
ftex.map} <./figure/logos.png>]
Overfull \hbox (122.79018pt too wide) in paragraph at lines 273--273
[]\T1/lmr/m/n/12 February 24, 2020 []
[]
Overfull \hbox (122.79018pt too wide) in paragraph at lines 273--273
[]\T1/lmr/m/n/12 February 24, 2020 []
[]
pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has
been already used, duplicate ignored
<to be read again>
\relax
l.274 \frontmatter
% this stuff will be roman-numbered [1
]
LaTeX Font Info: Trying to load font information for T1+lmtt on input line 2
77.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/t1lmtt.fd
File: t1lmtt.fd 2009/10/30 v1.6 Font defs for Latin Modern
) [1
] (./thesis.toc
LaTeX Font Info: Trying to load font information for OT1+lmr on input line 1
.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/ot1lmr.fd
File: ot1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OML+lmm on input line 1
.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/omllmm.fd
File: omllmm.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OMS+lmsy on input line
1.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/omslmsy.fd
File: omslmsy.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OMX+lmex on input line
1.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/omxlmex.fd
File: omxlmex.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <12> on input line 1.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <8> on input line 1.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <6> on input line 1.
LaTeX Font Info: Trying to load font information for U+lasy on input line 1.
(c:/Users/alexyshr/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 1.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/umsa.f
d
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
)
LaTeX Font Info: Trying to load font information for U+msb on input line 1.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/umsb.f
d
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
) [2
] [3])
\tf@toc=\write5
\openout5 = `thesis.toc'.
[4] (./thesis.lot)
\tf@lot=\write6
\openout6 = `thesis.lot'.
[5
] (./thesis.lof [6
])
\tf@lof=\write7
\openout7 = `thesis.lof'.
[7] [8
] [9
]
Chapter 1.
pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has
been already used, duplicate ignored
<to be read again>
\relax
l.364
[1
]
Package Fancyhdr Warning: \headheight is too small (12.0pt):
Make it at least 14.49998pt.
We now make it that large for the rest of the document.
This may cause the page layout to be inconsistent, however.
[2] [3] [4] [5] [6]
Chapter 2.
LaTeX Font Info: Trying to load font information for TS1+lmr on input line 4
72.
(c:/Users/alexyshr/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/ts1lmr.fd
File: ts1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
) [7
] [8]
<thesis_files/figure-latex/plotideamstations-1.pdf, id=774, 469.755pt x 325.215
pt>
File: thesis_files/figure-latex/plotideamstations-1.pdf Graphic file (type pdf)
<use thesis_files/figure-latex/plotideamstations-1.pdf>
Package pdftex.def Info: thesis_files/figure-latex/plotideamstations-1.pdf use
d on input line 562.
(pdftex.def) Requested size: 469.75386pt x 325.2142pt.
<thesis_files/figure-latex/plotoneideamstation-1.pdf, id=775, 325.215pt x 252.9
45pt>
File: thesis_files/figure-latex/plotoneideamstation-1.pdf Graphic file (type pd
f)
<use thesis_files/figure-latex/plotoneideamstation-1.pdf>
Package pdftex.def Info: thesis_files/figure-latex/plotoneideamstation-1.pdf u
sed on input line 567.
(pdftex.def) Requested size: 325.2142pt x 252.94438pt.
[9 <./thesis_files/figure-latex/plotideamstations-1.pdf>]
<thesis_files/figure-latex/plotisdstations-1.pdf, id=791, 469.755pt x 325.215pt
>
File: thesis_files/figure-latex/plotisdstations-1.pdf Graphic file (type pdf)
<use thesis_files/figure-latex/plotisdstations-1.pdf>
Package pdftex.def Info: thesis_files/figure-latex/plotisdstations-1.pdf used
on input line 597.
(pdftex.def) Requested size: 469.75386pt x 325.2142pt.
<thesis_files/figure-latex/plotoneisdstation-1.pdf, id=792, 325.215pt x 237.888
75pt>
File: thesis_files/figure-latex/plotoneisdstation-1.pdf Graphic file (type pdf)
<use thesis_files/figure-latex/plotoneisdstation-1.pdf>
Package pdftex.def Info: thesis_files/figure-latex/plotoneisdstation-1.pdf use
d on input line 602.
(pdftex.def) Requested size: 325.2142pt x 237.88815pt.
[10 <./thesis_files/figure-latex/plotoneideamstation-1.pdf>]
<thesis_files/figure-latex/plotera5stations-1.pdf, id=806, 469.755pt x 292.0912
5pt>
File: thesis_files/figure-latex/plotera5stations-1.pdf Graphic file (type pdf)
<use thesis_files/figure-latex/plotera5stations-1.pdf>
Package pdftex.def Info: thesis_files/figure-latex/plotera5stations-1.pdf used
on input line 611.
(pdftex.def) Requested size: 469.75386pt x 292.09052pt.
[11 <./thesis_files/figure-latex/plotisdstations-1.pdf> <./thesis_files/figure-
latex/plotoneisdstation-1.pdf>] [12 <./thesis_files/figure-latex/plotera5statio
ns-1.pdf>]
Chapter 3.
<thesis_files/figure-latex/plotgumbelpdffunction-1.pdf, id=849, 289.08pt x 216.
81pt>
File: thesis_files/figure-latex/plotgumbelpdffunction-1.pdf Graphic file (type
pdf)
<use thesis_files/figure-latex/plotgumbelpdffunction-1.pdf>
Package pdftex.def Info: thesis_files/figure-latex/plotgumbelpdffunction-1.pdf
used on input line 658.
(pdftex.def) Requested size: 289.07928pt x 216.80946pt.
[13
]
<thesis_files/figure-latex/plotgumbelpdf-1.pdf, id=860, 289.08pt x 216.81pt>
File: thesis_files/figure-latex/plotgumbelpdf-1.pdf Graphic file (type pdf)
<use thesis_files/figure-latex/plotgumbelpdf-1.pdf>
Package pdftex.def Info: thesis_files/figure-latex/plotgumbelpdf-1.pdf used on
input line 666.
(pdftex.def) Requested size: 289.07928pt x 216.80946pt.
[14 <./thesis_files/figure-latex/plotgumbelpdffunction-1.pdf> <./thesis_files/f
igure-latex/plotgumbelpdf-1.pdf>]
<thesis_files/figure-latex/plotgumbelcdffunction-1.pdf, id=884, 289.08pt x 216.
81pt>
File: thesis_files/figure-latex/plotgumbelcdffunction-1.pdf Graphic file (type
pdf)
<use thesis_files/figure-latex/plotgumbelcdffunction-1.pdf>
Package pdftex.def Info: thesis_files/figure-latex/plotgumbelcdffunction-1.pdf
used on input line 695.
(pdftex.def) Requested size: 289.07928pt x 216.80946pt.
<thesis_files/figure-latex/plotgumbelppffunction-1.pdf, id=888, 289.08pt x 216.
81pt>
File: thesis_files/figure-latex/plotgumbelppffunction-1.pdf Graphic file (type
pdf)
<use thesis_files/figure-latex/plotgumbelppffunction-1.pdf>
Package pdftex.def Info: thesis_files/figure-latex/plotgumbelppffunction-1.pdf
used on input line 719.
(pdftex.def) Requested size: 289.07928pt x 216.80946pt.
[15 <./thesis_files/figure-latex/plotgumbelcdffunction-1.pdf>]
<thesis_files/figure-latex/plotgumbelhffunction-1.pdf, id=905, 289.08pt x 216.8
1pt>
File: thesis_files/figure-latex/plotgumbelhffunction-1.pdf Graphic file (type p
df)
<use thesis_files/figure-latex/plotgumbelhffunction-1.pdf>
Package pdftex.def Info: thesis_files/figure-latex/plotgumbelhffunction-1.pdf
used on input line 732.
(pdftex.def) Requested size: 289.07928pt x 216.80946pt.
[16 <./thesis_files/figure-latex/plotgumbelppffunction-1.pdf> <./thesis_files/f
igure-latex/plotgumbelhffunction-1.pdf>]
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <14.4> on input line 753.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <10> on input line 753.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <7> on input line 753.
<thesis_files/figure-latex/winddatabase-1.pdf, id=929, 216.81pt x 72.27pt>
File: thesis_files/figure-latex/winddatabase-1.pdf Graphic file (type pdf)
<use thesis_files/figure-latex/winddatabase-1.pdf>
Package pdftex.def Info: thesis_files/figure-latex/winddatabase-1.pdf used on
input line 760.
(pdftex.def) Requested size: 216.80946pt x 72.2698pt.
[17 <./thesis_files/figure-latex/winddatabase-1.pdf>]
<thesis_files/figure-latex/compoundprobability-1.pdf, id=944, 361.35pt x 180.67