-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathIDEMAbook.log
1552 lines (1309 loc) · 55.9 KB
/
IDEMAbook.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 (MiKTeX 20.7) (preloaded format=pdflatex 2020.8.23) 5 OCT 2020 14:50
entering extended mode
**./IDEMAbook.tex
(IDEMAbook.tex
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-08-07> ("C:\Users\Andreas Handel\AppData\Local\Progr
ams\MiKTeX\tex/latex/base\book.cls"
Document Class: book 2019/12/20 v1.4l Standard LaTeX document class
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/base\bk10.clo
"
File: bk10.clo 2019/12/20 v1.4l Standard LaTeX file (size option)
)
\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\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/lm\lmodern.st
y"
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\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\amss
ymb.sty"
Package: amssymb 2013/01/14 v3.01 AMS font symbols
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\amsf
onts.sty"
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\@emptytoks=\toks15
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
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\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsma
th.sty"
Package: amsmath 2020/01/20 v2.17e AMS math features
\@mathmargin=\skip49
For additional information on amsmath, use the `?' option.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amste
xt.sty"
Package: amstext 2000/06/29 v2.01 AMS text
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsge
n.sty"
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks16
\ex@=\dimen135
))
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsbs
y.sty"
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen136
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsop
n.sty"
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count177
LaTeX Info: Redefining \frac on input line 227.
\uproot@=\count178
\leftroot@=\count179
LaTeX Info: Redefining \overline on input line 389.
\classnum@=\count180
\DOTSCASE@=\count181
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=\dimen137
LaTeX Font Info: Redeclaring font encoding OML on input line 733.
LaTeX Font Info: Redeclaring font encoding OMS on input line 734.
\macc@depth=\count182
\c@MaxMatrixCols=\count183
\dotsspace@=\muskip16
\c@parentequation=\count184
\dspbrk@lvl=\count185
\tag@help=\toks17
\row@=\count186
\column@=\count187
\maxfields@=\count188
\andhelp@=\toks18
\eqnshift@=\dimen138
\alignsep@=\dimen139
\tagshift@=\dimen140
\tagwidth@=\dimen141
\totwidth@=\dimen142
\lineht@=\dimen143
\@envbody=\toks19
\multlinegap=\skip50
\multlinetaggap=\skip51
\mathdisplay@stack=\toks20
LaTeX Info: Redefining \[ on input line 2859.
LaTeX Info: Redefining \] on input line 2860.
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/iftex\ifxet
ex.sty"
Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/iftex\iftex
.sty"
Package: iftex 2020/03/06 v1.0d TeX engine tests
))
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/iftex\iflua
tex.sty"
Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/base\fontenc.
sty"
Package: fontenc 2020/02/11 v2.0o Standard LaTeX package
LaTeX Font Info: Trying to load font information for T1+lmr on input line 11
2.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/lm\t1lmr.fd"
File: t1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
))
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/base\inputenc
.sty"
Package: inputenc 2018/08/11 v1.3c Input encoding file
\inpenc@prehook=\toks21
\inpenc@posthook=\toks22
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/base\textcomp
.sty"
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/upquote\upquo
te.sty"
Package: upquote 2012/04/19 v1.3 upright-quote and grave-accent glyphs in verba
tim
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/microtype\mic
rotype.sty"
Package: microtype 2019/11/18 v2.7d Micro-typographical refinements (RS)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/graphics\keyv
al.sty"
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks23
)
\MT@toks=\toks24
\MT@count=\count189
LaTeX Info: Redefining \textls on input line 790.
\MT@outer@kern=\dimen144
LaTeX Info: Redefining \textmicrotypecontext on input line 1354.
\MT@listname@count=\count190
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/microtype\mic
rotype-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=\skip52
)
Package microtype Info: Loading configuration file microtype.cfg.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/microtype\mic
rotype.cfg"
File: microtype.cfg 2019/11/18 v2.7d microtype main configuration file (RS)
))
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/parskip\parsk
ip.sty"
Package: parskip 2020-06-15 v2.0f non-zero parskip adjustments
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/kvoptions\kvo
ptions.sty"
Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/ltxcmds\ltx
cmds.sty"
Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO)
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/kvsetkeys\k
vsetkeys.sty"
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
))
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/etoolbox\etoo
lbox.sty"
Package: etoolbox 2020/07/15 v2.5i e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count191
))
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/xcolor\xcolor
.sty"
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\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.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/graphics-def\
pdftex.def"
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
)
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\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/xurl\xurl.s
ty"
Package: xurl 2020/01/24 v 0.09 modify URL breaks
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/url\url.sty"
\Urlmuskip=\muskip17
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
))
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/bookmark\book
mark.sty"
Package: bookmark 2019/12/03 v1.28 PDF bookmarks (HO)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\hype
rref.sty"
Package: hyperref 2020-05-15 v7.00e Hypertext links for LaTeX
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/pdftexcmds\
pdftexcmds.sty"
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/infwarerr\i
nfwarerr.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\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/kvdefinekey
s\kvdefinekeys.sty"
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/pdfescape\p
dfescape.sty"
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/hycolor\hycol
or.sty"
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/letltxmacro\l
etltxmacro.sty"
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/auxhook\auxho
ok.sty"
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
\@linkdim=\dimen145
\Hy@linkcounter=\count192
\Hy@pagecounter=\count193
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\pd1e
nc.def"
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\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/intcalc\int
calc.sty"
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/etexcmds\et
excmds.sty"
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count194
Package hyperref Info: Option `unicode' set `true' on input line 4338.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\puen
c.def"
File: puenc.def 2020-05-15 v7.00e 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 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=\count195
LaTeX Info: Redefining \url on input line 5076.
\XeTeXLinkMargin=\dimen146
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/bitset\bits
et.sty"
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/bigintcalc\
bigintcalc.sty"
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count196
\Field@Width=\dimen147
\Fld@charsize=\dimen148
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\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/atbegshi\at
begshi.sty"
Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO)
)
\Hy@abspage=\count197
\c@Item=\count198
\c@Hfootnote=\count199
)
Package hyperref Info: Driver (autodetected): hpdftex.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\hpdf
tex.def"
File: hpdftex.def 2020-05-15 v7.00e Hyperref driver for pdfTeX
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/atveryend\atv
eryend.sty"
Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO)
)
\Fld@listcount=\count266
\c@bookmark@seq@number=\count267
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/rerunfilechec
k\rerunfilecheck.sty"
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/uniquecount
er\uniquecounter.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=\skip53
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/bookmark\bkm-
pdftex.def"
File: bkm-pdftex.def 2019/12/03 v1.28 bookmark driver for pdfTeX (HO)
\BKM@id=\count268
))
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/tools\longtab
le.sty"
Package: longtable 2020/01/07 v4.13 Multi-page Table package (DPC)
\LTleft=\skip54
\LTright=\skip55
\LTpre=\skip56
\LTpost=\skip57
\LTchunksize=\count269
\LTcapwidth=\dimen149
\LT@head=\box47
\LT@firsthead=\box48
\LT@foot=\box49
\LT@lastfoot=\box50
\LT@cols=\count270
\LT@rows=\count271
\c@LT@tables=\count272
\c@LT@chunks=\count273
\LT@p@ftn=\toks25
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/booktabs\book
tabs.sty"
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen150
\lightrulewidth=\dimen151
\cmidrulewidth=\dimen152
\belowrulesep=\dimen153
\belowbottomsep=\dimen154
\aboverulesep=\dimen155
\abovetopsep=\dimen156
\cmidrulesep=\dimen157
\cmidrulekern=\dimen158
\defaultaddspace=\dimen159
\@cmidla=\count274
\@cmidlb=\count275
\@aboverulesep=\dimen160
\@belowrulesep=\dimen161
\@thisruleclass=\count276
\@lastruleclass=\count277
\@thisrulewidth=\dimen162
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/footnotehyper
\footnotehyper.sty"
Package: footnotehyper 2019/11/07 v1.1a hyperref aware footnote.sty (JFB)
\FNH@notes=\box51
\FNH@width=\dimen163
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/graphics\grap
hicx.sty"
Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/graphics\grap
hics.sty"
Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/graphics\trig
.sty"
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\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 105.
)
\Gin@req@height=\dimen164
\Gin@req@width=\dimen165
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/grffile\grffi
le.sty"
Package: grffile 2019/11/11 v2.1 Extended file name support for graphics (legac
y)
Package grffile Info: This package is an empty stub for compatibility on input
line 40.
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/l3backend\l3b
ackend-pdfmode.def"
File: l3backend-pdfmode.def 2020-08-07 L3 backend support: PDF mode
\l__kernel_color_stack_int=\count278
\l__pdf_internal_box=\box52
) (IDEMAbook.aux
LaTeX Warning: Label `mynotebox' multiply defined.
LaTeX Warning: Label `mynotebox' multiply defined.
LaTeX Warning: Label `mynotebox' multiply defined.
LaTeX Warning: Label `myadvancedbox' multiply defined.
LaTeX Warning: Label `mynotebox' multiply defined.
LaTeX Warning: Label `myadvancedbox' multiply defined.
LaTeX Warning: Label `mynotebox' multiply defined.
LaTeX Warning: Label `myexamplebox' multiply defined.
LaTeX Warning: Label `myexamplebox' multiply defined.
LaTeX Warning: Label `myadvancedbox' multiply defined.
LaTeX Warning: Label `mynotebox' multiply defined.
LaTeX Warning: Label `myadvancedbox' multiply defined.
LaTeX Warning: Label `mynotebox' multiply defined.
LaTeX Warning: Label `myadvancedbox' multiply defined.
LaTeX Warning: Label `myadvancedbox' multiply defined.
LaTeX Warning: Label `myadvancedbox' multiply defined.
LaTeX Warning: Label `mynotebox' multiply defined.
LaTeX Warning: Label `myexamplebox' multiply defined.
LaTeX Warning: Label `mynotebox' multiply defined.
LaTeX Warning: Label `myexamplebox' multiply defined.
LaTeX Warning: Label `myadvancedbox' multiply defined.
LaTeX Warning: Label `references' multiply defined.
)
\openout1 = `IDEMAbook.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 75.
LaTeX Font Info: ... okay on input line 75.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 75.
LaTeX Font Info: ... okay on input line 75.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 75.
LaTeX Font Info: ... okay on input line 75.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 75.
LaTeX Font Info: ... okay on input line 75.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 75.
LaTeX Font Info: ... okay on input line 75.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 75.
LaTeX Font Info: ... okay on input line 75.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 75.
LaTeX Font Info: ... okay on input line 75.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 75.
LaTeX Font Info: ... okay on input line 75.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 75.
LaTeX Font Info: ... okay on input line 75.
LaTeX Info: Redefining \microtypecontext on input line 75.
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 `basictext'.
LaTeX Info: Redefining \showhyphens on input line 75.
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\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/microtype\mt-
cmr.cfg"
File: mt-cmr.cfg 2013/05/19 v2.2 microtype config. file: Computer Modern Roman
(RS)
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/context/base/mkii\s
upp-pdf.mkii"
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count279
\scratchdimen=\dimen166
\scratchbox=\box53
\nofMPsegments=\count280
\nofMParguments=\count281
\everyMPshowfont=\toks26
\MPscratchCnt=\count282
\MPscratchDim=\dimen167
\MPnumerator=\count283
\makeMPintoPDFobject=\count284
\everyMPtoPDFconversion=\toks27
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\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 4
85.
)
\AtBeginShipoutBox=\box54
Package hyperref Info: Link coloring OFF on input line 75.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\name
ref.sty"
Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/refcount\refc
ount.sty"
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/generic/gettitlestr
ing\gettitlestring.sty"
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
)
\c@section@level=\count285
)
LaTeX Info: Redefining \ref on input line 75.
LaTeX Info: Redefining \pageref on input line 75.
LaTeX Info: Redefining \nameref on input line 75.
LaTeX Font Info: Trying to load font information for OT1+lmr on input line 7
7.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\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 7
7.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\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
77.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\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
77.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\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 77.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <8> on input line 77.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <6> on input line 77.
LaTeX Font Info: Trying to load font information for U+msa on input line 77.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\umsa
.fd"
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\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 77.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\umsb
.fd"
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
)
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/microtype\mt-
msb.cfg"
File: mt-msb.cfg 2005/06/01 v1.0 microtype config. file: AMS symbols (b) (RS)
) [1
{C:/Users/Andreas Handel/AppData/Local/MiKTeX/pdftex/config/pdftex.map}] [2
] (IDEMAbook.toc
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <10> on input line 3.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <7> on input line 3.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <5> on input line 3.
[3] [4] [5] [6] [7] [8])
\tf@toc=\write3
\openout3 = `IDEMAbook.toc'.
[9] [10
] [11] [12
]
Chapter 1.
[13] [14]
LaTeX Font Info: Trying to load font information for TS1+lmr on input line 1
38.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/lm\ts1lmr.fd"
File: ts1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
) [15] [16
]
Chapter 2.
[17]
<./images/epi-triangle.png, id=617, 268.8444pt x 236.5638pt>
File: ./images/epi-triangle.png Graphic file (type png)
<use ./images/epi-triangle.png>
Package pdftex.def Info: ./images/epi-triangle.png used on input line 180.
(pdftex.def) Requested size: 268.84375pt x 236.5632pt.
<./images/complexsystem.png, id=621, 244.2726pt x 231.7458pt>
File: ./images/complexsystem.png Graphic file (type png)
<use ./images/complexsystem.png>
Package pdftex.def Info: ./images/complexsystem.png used on input line 191.
(pdftex.def) Requested size: 244.28317pt x 231.75583pt.
Underfull \vbox (badness 10000) has occurred while \output is active []
Overfull \hbox (29.62227pt too wide) has occurred while \output is active
\T1/lmr/m/n/10 18 \T1/lmr/m/sl/10 CHAPTER 2. INTRODUCTION TO THE DYNAMICAL SYS
TEMS APPROACH
[]
[18 <./images/epi-triangle.png>] [19 <./images/complexsystem.png>]
<./images/phenomodel.png, id=641, 684.8787pt x 411.6981pt>
File: ./images/phenomodel.png Graphic file (type png)
<use ./images/phenomodel.png>
Package pdftex.def Info: ./images/phenomodel.png used on input line 207.
(pdftex.def) Requested size: 684.88745pt x 411.70335pt.
Overfull \hbox (339.88745pt too wide) in paragraph at lines 207--207
[][]
[]
Overfull \hbox (29.62227pt too wide) has occurred while \output is active
\T1/lmr/m/n/10 20 \T1/lmr/m/sl/10 CHAPTER 2. INTRODUCTION TO THE DYNAMICAL SYS
TEMS APPROACH
[]
[20] [21 <./images/phenomodel.png>]
<./images/moving-triangle.png, id=662, 393.3897pt x 160.4394pt>
File: ./images/moving-triangle.png Graphic file (type png)
<use ./images/moving-triangle.png>
Package pdftex.def Info: ./images/moving-triangle.png used on input line 236.
(pdftex.def) Requested size: 393.38873pt x 160.43901pt.
Overfull \hbox (48.38873pt too wide) in paragraph at lines 236--236
[][]
[]
Overfull \hbox (29.62227pt too wide) has occurred while \output is active
\T1/lmr/m/n/10 22 \T1/lmr/m/sl/10 CHAPTER 2. INTRODUCTION TO THE DYNAMICAL SYS
TEMS APPROACH
[]
[22] [23 <./images/moving-triangle.png>]
Overfull \hbox (29.62227pt too wide) has occurred while \output is active
\T1/lmr/m/n/10 24 \T1/lmr/m/sl/10 CHAPTER 2. INTRODUCTION TO THE DYNAMICAL SYS
TEMS APPROACH
[]
[24]
Underfull \hbox (badness 10000) in paragraph at lines 286--288
[]
<./images/basicSIRmodelfigure.png, id=690, 410.2527pt x 65.043pt>
File: ./images/basicSIRmodelfigure.png Graphic file (type png)
<use ./images/basicSIRmodelfigure.png>
Package pdftex.def Info: ./images/basicSIRmodelfigure.png used on input line 2
98.
(pdftex.def) Requested size: 410.27046pt x 65.0458pt.
Overfull \hbox (65.27046pt too wide) in paragraph at lines 298--298
[][]
[]
[25]
<./images/sirsim.png, id=700, 684.8787pt x 411.6981pt>
File: ./images/sirsim.png Graphic file (type png)
<use ./images/sirsim.png>
Package pdftex.def Info: ./images/sirsim.png used on input line 306.
(pdftex.def) Requested size: 684.88745pt x 411.70335pt.
Overfull \hbox (339.88745pt too wide) in paragraph at lines 306--306
[][]
[]
pdfTeX warning (ext4): destination with the same identifier (name{mynotebox}) h
as been already used, duplicate ignored
<to be read again>
\relax
l.312 \subsubsection{Notes}\label{mynotebox}}
Overfull \hbox (29.62227pt too wide) has occurred while \output is active
\T1/lmr/m/n/10 26 \T1/lmr/m/sl/10 CHAPTER 2. INTRODUCTION TO THE DYNAMICAL SYS
TEMS APPROACH
[]
[26 <./images/basicSIRmodelfigure.png>] [27 <./images/sirsim.png>]
<./images/xkcd-flowcharts.png, id=715, 668.4975pt x 700.11563pt>
File: ./images/xkcd-flowcharts.png Graphic file (type png)
<use ./images/xkcd-flowcharts.png>
Package pdftex.def Info: ./images/xkcd-flowcharts.png used on input line 336.
(pdftex.def) Requested size: 525.18991pt x 550.02998pt.
Overfull \hbox (180.18991pt too wide) in paragraph at lines 336--336
[][]
[]
LaTeX Warning: Float too large for page by 36.52998pt on input line 337.
Overfull \hbox (29.62227pt too wide) has occurred while \output is active
\T1/lmr/m/n/10 28 \T1/lmr/m/sl/10 CHAPTER 2. INTRODUCTION TO THE DYNAMICAL SYS
TEMS APPROACH
[]
[28] [29 <./images/xkcd-flowcharts.png>]
Overfull \hbox (29.62227pt too wide) has occurred while \output is active
\T1/lmr/m/n/10 30 \T1/lmr/m/sl/10 CHAPTER 2. INTRODUCTION TO THE DYNAMICAL SYS
TEMS APPROACH
[]
[30]
Chapter 3.
[31
] [32]pdfTeX warning (ext4): destination with the same identifier (name{mynoteb
ox}) has been already used, duplicate ignored
<to be read again>
\relax
l.418 \subsubsection{Notes}\label{mynotebox}}
[33] [34] [35]
<./images/ComplicatedModel.png, id=809, 587.5551pt x 205.0059pt>
File: ./images/ComplicatedModel.png Graphic file (type png)
<use ./images/ComplicatedModel.png>
Package pdftex.def Info: ./images/ComplicatedModel.png used on input line 480.
(pdftex.def) Requested size: 587.56262pt x 205.00851pt.
Overfull \hbox (242.56262pt too wide) in paragraph at lines 480--480
[][]
[]
[36]
<./images/xkcd-course-of-colds.png, id=819, 379.4175pt x 284.56313pt>
File: ./images/xkcd-course-of-colds.png Graphic file (type png)
<use ./images/xkcd-course-of-colds.png>
Package pdftex.def Info: ./images/xkcd-course-of-colds.png used on input line
499.
(pdftex.def) Requested size: 379.45708pt x 284.5928pt.
Overfull \hbox (34.45708pt too wide) in paragraph at lines 499--499
[][]
[]
Underfull \hbox (badness 1221) in paragraph at lines 499--499
[]\T1/lmr/m/n/10 (+20) Figure 3.2: []Yet an-other per-spec-tive on ID in-fec-ti
on states. [Source:
[]
[37 <./images/ComplicatedModel.png>] [38 <./images/xkcd-course-of-colds.png>] [
39] [40
]
Chapter 4.
<./images/IDcycles.pdf, id=854, 500.87125pt x 388.45125pt>
File: ./images/IDcycles.pdf Graphic file (type pdf)
<use ./images/IDcycles.pdf>
Package pdftex.def Info: ./images/IDcycles.pdf used on input line 559.
(pdftex.def) Requested size: 500.88528pt x 388.46213pt.
Overfull \hbox (155.88528pt too wide) in paragraph at lines 559--559
[][]
[]
[41] [42 <./images/IDcycles.pdf>]
<./images/R0modelfigure.png, id=871, 432.6564pt x 109.3686pt>
File: ./images/R0modelfigure.png Graphic file (type png)
<use ./images/R0modelfigure.png>
Package pdftex.def Info: ./images/R0modelfigure.png used on input line 580.
(pdftex.def) Requested size: 432.65535pt x 109.36832pt.
Overfull \hbox (87.65535pt too wide) in paragraph at lines 580--580
[][]
[]
pdfTeX warning (ext4): destination with the same identifier (name{mynotebox}) h
as been already used, duplicate ignored
<to be read again>
\relax
l.586 \subsubsection{Notes}\label{mynotebox}}
Underfull \vbox (badness 1472) has occurred while \output is active []
[43]pdfTeX warning (ext4): destination with the same identifier (name{myadvance
dbox}) has been already used, duplicate ignored
<to be read again>
\relax
l.591 ...urce Replenishment}\label{myadvancedbox}}
[44 <./images/R0modelfigure.
png>] [45]pdfTeX warning (ext4): destination with the same identifier (name{myn
otebox}) has been already used, duplicate ignored
<to be read again>
\relax
l.628 \subsubsection{Notes}\label{mynotebox}}
[46]pdfTeX warning (ext4): destin
ation with the same identifier (name{myadvancedbox}) has been already used, dup
licate ignored
<to be read again>
\relax
l.644 ... States and Models}\label{myadvancedbox}}
LaTeX Font Info: Trying to load font information for T1+lmtt on input line 6
48.
("C:\Users\Andreas Handel\AppData\Local\Programs\MiKTeX\tex/latex/lm\t1lmtt.fd"
File: t1lmtt.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
<./images/SSmaxima.png, id=914, 758.08218pt x 121.20282pt>
File: ./images/SSmaxima.png Graphic file (type png)
<use ./images/SSmaxima.png>
Package pdftex.def Info: ./images/SSmaxima.png used on input line 651.
(pdftex.def) Requested size: 758.11502pt x 121.20805pt.
Overfull \hbox (413.11502pt too wide) in paragraph at lines 651--651
[][]
[]
[47 <./images/SSmaxima.png>]
<./images/gonorrhea.png, id=926, 660.4675pt x 278.03876pt>
File: ./images/gonorrhea.png Graphic file (type png)
<use ./images/gonorrhea.png>
Package pdftex.def Info: ./images/gonorrhea.png used on input line 665.
(pdftex.def) Requested size: 660.47595pt x 278.04231pt.
Overfull \hbox (315.47595pt too wide) in paragraph at lines 665--665
[][]
[]
[48] [49 <./images/gonorrhea.png>]
<./images/phd_sciencenewscycle.png, id=940, 602.25pt x 669.50125pt>
File: ./images/phd_sciencenewscycle.png Graphic file (type png)
<use ./images/phd_sciencenewscycle.png>
Package pdftex.def Info: ./images/phd_sciencenewscycle.png used on input line
681.
(pdftex.def) Requested size: 494.79472pt x 550.0468pt.
Overfull \hbox (149.79472pt too wide) in paragraph at lines 681--681
[][]
[]
Underfull \hbox (badness 10000) in paragraph at lines 681--681
[]\T1/lmr/m/n/10 (+20) Figure 4.5: []Here is a dif-fer-ent kind of cy-cle that
[]
Underfull \hbox (badness 10000) in paragraph at lines 681--681
\T1/lmr/m/n/10 (+20) (ID) sci-en-tists some-times en-counter. [Source: phd-
[]
LaTeX Warning: Float too large for page by 48.5468pt on input line 682.
[50] [51 <./images/phd_sciencenewscycle.png>] [52
]
Chapter 5.
[53]
<./images/R0scheme.png, id=987, 416.5161pt x 396.5214pt>
File: ./images/R0scheme.png Graphic file (type png)
<use ./images/R0scheme.png>
Package pdftex.def Info: ./images/R0scheme.png used on input line 752.
(pdftex.def) Requested size: 345.00916pt x 328.44711pt.
[54] [55 <./images/R0scheme.png>]pdfTeX warning (ext4): destination with the sa
me identifier (name{mynotebox}) has been already used, duplicate ignored
<to be read again>
\relax
l.782 \subsubsection{Notes}\label{mynotebox}}
Underfull \vbox (badness 3271) has occurred while \output is active []
[56] [57]
<./images/R0intervention.pdf, id=1019, 650.43pt x 361.35pt>
File: ./images/R0intervention.pdf Graphic file (type pdf)
<use ./images/R0intervention.pdf>
Package pdftex.def Info: ./images/R0intervention.pdf used on input line 801.
(pdftex.def) Requested size: 650.4284pt x 361.34912pt.
Overfull \hbox (305.4284pt too wide) in paragraph at lines 801--801
[][]
[]
pdfTeX warning (ext4): destination with the same identifier (name{myexamplebox}
) has been already used, duplicate ignored
<to be read again>
\relax
l.805 ...k Control - Example}\label{myexamplebox}}
[58] [59 <./images/R0interve