-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.log
1251 lines (1096 loc) · 48.5 KB
/
main.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.26 (TeX Live 2024) (preloaded format=pdflatex 2024.11.1) 15 NOV 2024 00:14
entering extended mode
restricted \write18 enabled.
file:line:error style messages enabled.
%&-line parsing enabled.
**main.tex
(./main.tex
LaTeX2e <2024-06-01> patch level 2
L3 programming layer <2024-10-09>
(/opt/texlive/texdir/texmf-dist/tex/latex/base/article.cls
Document Class: article 2024/02/08 v1.4n Standard LaTeX document class
(/opt/texlive/texdir/texmf-dist/tex/latex/base/size10.clo
File: size10.clo 2024/02/08 v1.4n Standard LaTeX file (size option)
)
\c@part=\count194
\c@section=\count195
\c@subsection=\count196
\c@subsubsection=\count197
\c@paragraph=\count198
\c@subparagraph=\count199
\c@figure=\count266
\c@table=\count267
\abovecaptionskip=\skip49
\belowcaptionskip=\skip50
\bibindent=\dimen141
) (./orcidlink.sty
Package: orcidlink 2021/06/11 v1.0.4 Linked ORCiD logo macro package
(/opt/texlive/texdir/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2024-10-30 v7.01k Hypertext links for LaTeX
(/opt/texlive/texdir/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2022/02/03 v1.0f TeX engine tests
)
(/opt/texlive/texdir/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
\KV@toks@=\toks17
)
(/opt/texlive/texdir/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
)
(/opt/texlive/texdir/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pdfescape/pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
(/opt/texlive/texdir/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2023-12-04 v1.26 LaTeX kernel commands for general use (HO)
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
(/opt/texlive/texdir/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.
))
(/opt/texlive/texdir/texmf-dist/tex/latex/hycolor/hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(/opt/texlive/texdir/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2023-11-26 v2.56 Cross-referencing by name of section
(/opt/texlive/texdir/texmf-dist/tex/latex/refcount/refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(/opt/texlive/texdir/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
(/opt/texlive/texdir/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
))
\c@section@level=\count268
)
(/opt/texlive/texdir/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count269
)
(/opt/texlive/texdir/texmf-dist/tex/generic/stringenc/stringenc.sty
Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO
)
)
\@linkdim=\dimen142
\Hy@linkcounter=\count270
\Hy@pagecounter=\count271
(/opt/texlive/texdir/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2024-10-30 v7.01k Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
(/opt/texlive/texdir/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
\Hy@SavedSpaceFactor=\count272
(/opt/texlive/texdir/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2024-10-30 v7.01k 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 4157.
Package hyperref Info: Link nesting OFF on input line 4162.
Package hyperref Info: Hyper index ON on input line 4165.
Package hyperref Info: Plain pages OFF on input line 4172.
Package hyperref Info: Backreferencing OFF on input line 4177.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4424.
\c@Hy@tempcnt=\count273
(/opt/texlive/texdir/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip17
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4763.
\XeTeXLinkMargin=\dimen143
(/opt/texlive/texdir/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(/opt/texlive/texdir/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count274
\Field@Width=\dimen144
\Fld@charsize=\dimen145
Package hyperref Info: Hyper figures OFF on input line 6042.
Package hyperref Info: Link nesting OFF on input line 6047.
Package hyperref Info: Hyper index ON on input line 6050.
Package hyperref Info: backreferencing OFF on input line 6057.
Package hyperref Info: Link coloring OFF on input line 6062.
Package hyperref Info: Link coloring with OCG OFF on input line 6067.
Package hyperref Info: PDF/A mode OFF on input line 6072.
(/opt/texlive/texdir/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=\count275
\c@Item=\count276
\c@Hfootnote=\count277
)
Package hyperref Info: Driver (autodetected): hpdftex.
(/opt/texlive/texdir/texmf-dist/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2024-10-30 v7.01k Hyperref driver for pdfTeX
(/opt/texlive/texdir/texmf-dist/tex/latex/base/atveryend-ltx.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend pac
kage
with kernel methods
)
\Fld@listcount=\count278
\c@bookmark@seq@number=\count279
(/opt/texlive/texdir/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)
(/opt/texlive/texdir/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 2
85.
)
\Hy@SectionHShift=\skip51
)
(/opt/texlive/texdir/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
(/opt/texlive/texdir/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
(/opt/texlive/texdir/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
\pgfutil@everybye=\toks18
\pgfutil@tempdima=\dimen146
\pgfutil@tempdimb=\dimen147
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
\pgfutil@abb=\box52
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/pgf.revision.tex)
Package: pgfrcs 2023-01-15 v3.1.10 (3.1.10)
))
Package: pgf 2023-01-15 v3.1.10 (3.1.10)
(/opt/texlive/texdir/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
(/opt/texlive/texdir/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
(/opt/texlive/texdir/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2024/05/23 v1.4g Standard LaTeX Graphics (DPC,SPQR)
(/opt/texlive/texdir/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
)
(/opt/texlive/texdir/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 106.
(/opt/texlive/texdir/texmf-dist/tex/latex/graphics-def/pdftex.def
File: pdftex.def 2024/04/13 v1.2c Graphics/color driver for pdftex
))
\Gin@req@height=\dimen148
\Gin@req@width=\dimen149
)
(/opt/texlive/texdir/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
Package: pgfsys 2023-01-15 v3.1.10 (3.1.10)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
\pgfkeys@pathtoks=\toks19
\pgfkeys@temptoks=\toks20
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltere
d.code.tex
\pgfkeys@tmptoks=\toks21
))
\pgf@x=\dimen150
\pgf@y=\dimen151
\pgf@xa=\dimen152
\pgf@ya=\dimen153
\pgf@xb=\dimen154
\pgf@yb=\dimen155
\pgf@xc=\dimen156
\pgf@yc=\dimen157
\pgf@xd=\dimen158
\pgf@yd=\dimen159
\w@pgf@writea=\write3
\r@pgf@reada=\read2
\c@pgf@counta=\count280
\c@pgf@countb=\count281
\c@pgf@countc=\count282
\c@pgf@countd=\count283
\t@pgf@toka=\toks22
\t@pgf@tokb=\toks23
\t@pgf@tokc=\toks24
\pgf@sys@id@count=\count284
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
File: pgf.cfg 2023-01-15 v3.1.10 (3.1.10)
)
Driver file for pgf: pgfsys-pdftex.def
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
File: pgfsys-pdftex.def 2023-01-15 v3.1.10 (3.1.10)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.d
ef
File: pgfsys-common-pdf.def 2023-01-15 v3.1.10 (3.1.10)
)))
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code
.tex
File: pgfsyssoftpath.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfsyssoftpath@smallbuffer@items=\count285
\pgfsyssoftpath@bigbuffer@items=\count286
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code
.tex
File: pgfsysprotocol.code.tex 2023-01-15 v3.1.10 (3.1.10)
)) (/opt/texlive/texdir/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK)
(/opt/texlive/texdir/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 274.
(/opt/texlive/texdir/texmf-dist/tex/latex/graphics/mathcolor.ltx)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353.
Package xcolor Info: Model `RGB' extended on input line 1365.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372.
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
Package: pgfcore 2023-01-15 v3.1.10 (3.1.10)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
\pgfmath@dimen=\dimen160
\pgfmath@count=\count287
\pgfmath@box=\box53
\pgfmath@toks=\toks25
\pgfmath@stack@operand=\toks26
\pgfmath@stack@operation=\toks27
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.cod
e.tex)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonome
tric.code.tex)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.co
de.tex)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.compariso
n.code.tex)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code
.tex)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.cod
e.tex)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code
.tex)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerar
ithmetics.code.tex)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
\c@pgfmathroundto@lastzeros=\count288
))
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.t
ex
File: pgfcorepoints.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@picminx=\dimen161
\pgf@picmaxx=\dimen162
\pgf@picminy=\dimen163
\pgf@picmaxy=\dimen164
\pgf@pathminx=\dimen165
\pgf@pathmaxx=\dimen166
\pgf@pathminy=\dimen167
\pgf@pathmaxy=\dimen168
\pgf@xx=\dimen169
\pgf@xy=\dimen170
\pgf@yx=\dimen171
\pgf@yy=\dimen172
\pgf@zx=\dimen173
\pgf@zy=\dimen174
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct
.code.tex
File: pgfcorepathconstruct.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@path@lastx=\dimen175
\pgf@path@lasty=\dimen176
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.cod
e.tex
File: pgfcorepathusage.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@shorten@end@additional=\dimen177
\pgf@shorten@start@additional=\dimen178
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.t
ex
File: pgfcorescopes.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfpic=\box54
\pgf@hbox=\box55
\pgf@layerbox@main=\box56
\pgf@picture@serial@count=\count289
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.
code.tex
File: pgfcoregraphicstate.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgflinewidth=\dimen179
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformatio
ns.code.tex
File: pgfcoretransformations.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@pt@x=\dimen180
\pgf@pt@y=\dimen181
\pgf@pt@temp=\dimen182
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.te
x
File: pgfcorequick.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.
tex
File: pgfcoreobjects.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessin
g.code.tex
File: pgfcorepathprocessing.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.t
ex
File: pgfcorearrows.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfarrowsep=\dimen183
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.te
x
File: pgfcoreshade.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@max=\dimen184
\pgf@sys@shading@range@num=\count290
\pgf@shadingcount=\count291
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.te
x
File: pgfcoreimage.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code
.tex
File: pgfcoreexternal.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfexternal@startupbox=\box57
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.t
ex
File: pgfcorelayers.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.
code.tex
File: pgfcoretransparency.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code
.tex
File: pgfcorepatterns.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
File: pgfcorerdf.code.tex 2023-01-15 v3.1.10 (3.1.10)
)))
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.te
x
File: pgfmoduleshapes.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfnodeparttextbox=\box58
)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
File: pgfmoduleplot.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/opt/texlive/texdir/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-6
5.sty
Package: pgfcomp-version-0-65 2023-01-15 v3.1.10 (3.1.10)
\pgf@nodesepstart=\dimen185
\pgf@nodesepend=\dimen186
)
(/opt/texlive/texdir/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-1
8.sty
Package: pgfcomp-version-1-18 2023-01-15 v3.1.10 (3.1.10)
)) (/opt/texlive/texdir/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
(/opt/texlive/texdir/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex))
(/opt/texlive/texdir/texmf-dist/tex/latex/pgf/math/pgfmath.sty
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
Package: pgffor 2023-01-15 v3.1.10 (3.1.10)
\pgffor@iter=\dimen187
\pgffor@skip=\dimen188
\pgffor@stack=\toks28
\pgffor@toks=\toks29
))
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.te
x
Package: tikz 2023-01-15 v3.1.10 (3.1.10)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandler
s.code.tex
File: pgflibraryplothandlers.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@plot@mark@count=\count292
\pgfplotmarksize=\dimen189
)
\tikz@lastx=\dimen190
\tikz@lasty=\dimen191
\tikz@lastxsaved=\dimen192
\tikz@lastysaved=\dimen193
\tikz@lastmovetox=\dimen194
\tikz@lastmovetoy=\dimen195
\tikzleveldistance=\dimen196
\tikzsiblingdistance=\dimen197
\tikz@figbox=\box59
\tikz@figbox@bg=\box60
\tikz@tempbox=\box61
\tikz@tempbox@bg=\box62
\tikztreelevel=\count293
\tikznumberofchildren=\count294
\tikznumberofcurrentchild=\count295
\tikz@fig@count=\count296
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.te
x
File: pgfmodulematrix.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfmatrixcurrentrow=\count297
\pgfmatrixcurrentcolumn=\count298
\pgf@matrix@numberofcolumns=\count299
)
\tikz@expandcount=\count300
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/ti
kzlibrarytopaths.code.tex
File: tikzlibrarytopaths.code.tex 2023-01-15 v3.1.10 (3.1.10)
)))
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/ti
kzlibrarysvg.path.code.tex
File: tikzlibrarysvg.path.code.tex 2023-01-15 v3.1.10 (3.1.10)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/libraries/pgflibrarysvg.path.co
de.tex
File: pgflibrarysvg.path.code.tex 2023-01-15 v3.1.10 (3.1.10)
(/opt/texlive/texdir/texmf-dist/tex/generic/pgf/modules/pgfmoduleparser.code.te
x
File: pgfmoduleparser.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfparserdef@arg@count=\count301
)
\pgf@lib@svg@last@x=\dimen198
\pgf@lib@svg@last@y=\dimen199
\pgf@lib@svg@last@c@x=\dimen256
\pgf@lib@svg@last@c@y=\dimen257
\pgf@lib@svg@count=\count302
\pgf@lib@svg@max@num=\count303
))
\@curXheight=\skip52
) (/opt/texlive/texdir/texmf-dist/tex/latex/fontawesome/fontawesome.sty
Package: fontawesome 2016/05/15 v4.6.3.1 font awesome icons
(/opt/texlive/texdir/texmf-dist/tex/generic/iftex/ifxetex.sty
Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead.
)
(/opt/texlive/texdir/texmf-dist/tex/generic/iftex/ifluatex.sty
Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
)
(/opt/texlive/texdir/texmf-dist/tex/latex/fontawesome/fontawesomesymbols-generi
c.tex)
(/opt/texlive/texdir/texmf-dist/tex/latex/fontawesome/fontawesomesymbols-pdftex
.tex)) (/opt/texlive/texdir/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.
)
(/opt/texlive/texdir/texmf-dist/tex/latex/preprint/fullpage.sty
Package: fullpage 1999/02/23 1.1 (PWD)
\FP@margin=\skip53
)
(/opt/texlive/texdir/texmf-dist/tex/latex/titlesec/titlesec.sty
Package: titlesec 2023/10/27 v2.16 Sectioning titles
\ttl@box=\box63
\beforetitleunit=\skip54
\aftertitleunit=\skip55
\ttl@plus=\dimen258
\ttl@minus=\dimen259
\ttl@toksa=\toks30
\titlewidth=\dimen260
\titlewidthlast=\dimen261
\titlewidthfirst=\dimen262
)
(/opt/texlive/texdir/texmf-dist/tex/latex/marvosym/marvosym.sty
Package: marvosym 2011/07/20 v2.2 Martin Vogel's Symbols font definitions
)
(/opt/texlive/texdir/texmf-dist/tex/latex/tools/verbatim.sty
Package: verbatim 2024-01-22 v1.5x LaTeX2e package for verbatim enhancements
\every@verbatim=\toks31
\verbatim@line=\toks32
\verbatim@in@stream=\read3
)
(/opt/texlive/texdir/texmf-dist/tex/latex/enumitem/enumitem.sty
Package: enumitem 2019/06/20 v3.9 Customized lists
\labelindent=\skip56
\enit@outerparindent=\dimen263
\enit@toks=\toks33
\enit@inbox=\box64
\enit@count@id=\count304
\enitdp@description=\count305
)
(/opt/texlive/texdir/texmf-dist/tex/latex/base/inputenc.sty
Package: inputenc 2024/02/08 v1.3d Input encoding file
\inpenc@prehook=\toks34
\inpenc@posthook=\toks35
)
(/opt/texlive/texdir/texmf-dist/tex/latex/readarray/readarray.sty
Package: readarray 2021/09/17\ 3.1\ Routines for inputting 2D and 3D array data
and recalling it on an element-by-element basis.
(/opt/texlive/texdir/texmf-dist/tex/latex/forloop/forloop.sty
Package: forloop 2023/05/03 v3.0 For Loops for LaTeX
(/opt/texlive/texdir/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2024/03/16 v1.1e Standard LaTeX ifthen package (DPC)
))
(/opt/texlive/texdir/texmf-dist/tex/generic/listofitems/listofitems.sty
(/opt/texlive/texdir/texmf-dist/tex/generic/listofitems/listofitems.tex
\loi_cnt_foreach_nest=\count306
\loi_nestcnt=\count307
)
Package: listofitems 2024/03/09 v1.65 Grab items in lists using user-specified
sep char (CT)
)
\c@@index=\count308
\c@@plane=\count309
\c@@row=\count310
\c@@col=\count311
\c@use@args=\count312
\c@@record=\count313
\c@index@count=\count314
\Arg@toks=\toks36
\@arrayident@toks=\toks37
\rdar@file=\read4
\readarrayendlinechar=\count315
readarray: bounds checking OFF
) (./src/supp_tex/cvstyle.tex
(/opt/texlive/texdir/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
Package: fancyhdr 2024/07/23 v4.3.1 Extensive control of page headers and foote
rs
\f@nch@headwidth=\skip57
\f@nch@O@elh=\skip58
\f@nch@O@erh=\skip59
\f@nch@O@olh=\skip60
\f@nch@O@orh=\skip61
\f@nch@O@elf=\skip62
\f@nch@O@erf=\skip63
\f@nch@O@olf=\skip64
\f@nch@O@orf=\skip65
)
(/opt/texlive/texdir/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2020/01/02 v5.9 Page Geometry
(/opt/texlive/texdir/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
)
\Gm@cnth=\count316
\Gm@cntv=\count317
\c@Gm@tempcnt=\count318
\Gm@bindingoffset=\dimen264
\Gm@wd@mp=\dimen265
\Gm@odd@mp=\dimen266
\Gm@even@mp=\dimen267
\Gm@layoutwidth=\dimen268
\Gm@layoutheight=\dimen269
\Gm@layouthoffset=\dimen270
\Gm@layoutvoffset=\dimen271
\Gm@dimlist=\toks38
)
(/opt/texlive/texdir/texmf-dist/tex/latex/advdate/advdate.sty
Package: advdate 1996/10/20 Advance Date Package
\r@k=\count319
\un@r=\count320
\m@l=\count321
\m@s=\count322
\M@s=\count323
)
Package hyperref Info: Option `colorlinks' set `true' on input line 32.
\c@refpubnum=\count324
)
(/opt/texlive/texdir/texmf-dist/tex/latex/mathdesign/mathdesign.sty
Package: mathdesign 2013/08/29 v2.31 Math Design Project
(/opt/texlive/texdir/texmf-dist/tex/latex/mathdesign/mdbch/mdbch.cfg)
(/opt/texlive/texdir/texmf-dist/tex/latex/mathdesign/mdbch/mdbch.sty
Package: mdbch 2013/08/29 v2.31 bitstream bitstream charter + mdbch (Math Desig
n Project)
(/opt/texlive/texdir/texmf-dist/tex/latex/mathdesign/mdfont.def
File: mdfont.def 2013/08/29 v2.31 (Math Design Project)
)
(/opt/texlive/texdir/texmf-dist/tex/latex/mathdesign/mdsffont.def
File: mdsffont.def 2013/08/29 v2.31 (Math Design Project)
LaTeX Info: Font shape OT1/phv/mc/n has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 53.
LaTeX Info: Font shape OT1/phv/mc/sc has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 56.
LaTeX Info: Font shape OT1/phv/mc/sl has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 59.
LaTeX Info: Font shape OT1/phv/mc/it has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 79.
LaTeX Info: Font shape T1/phv/mc/n has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 102.
LaTeX Info: Font shape T1/phv/mc/sc has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 105.
LaTeX Info: Font shape T1/phv/mc/sl has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 108.
LaTeX Info: Font shape T1/phv/mc/it has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 128.
LaTeX Info: Font shape OT1/uhv/mc/n has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 259.
LaTeX Info: Font shape OT1/uhv/mc/sc has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 262.
LaTeX Info: Font shape OT1/uhv/mc/sl has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 265.
LaTeX Info: Font shape OT1/uhv/mc/it has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 268.
LaTeX Info: Font shape T1/uhv/mc/n has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 313.
LaTeX Info: Font shape T1/uhv/mc/sc has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 316.
LaTeX Info: Font shape T1/uhv/mc/sl has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 319.
LaTeX Info: Font shape T1/uhv/mc/it has incorrect series value `mc'.
It should not contain an `m'! Please correct it.
Found on input line 322.
) (/opt/texlive/texdir/texmf-dist/tex/latex/mathdesign/mdttfont.def
File: mdttfont.def 2013/08/29 v2.31 (Math Design Project)
)
\symmdcal=\mathgroup5
LaTeX Font Info: Overwriting symbol font `mdcal' in version `bold'
(Font) OMS/mdbch/m/n --> OMS/mdbch/b/n on input line 97.
\symmdscr=\mathgroup6
LaTeX Font Info: Overwriting symbol font `mdscr' in version `bold'
(Font) OMS/mdbch/m/n --> OMS/mdbch/b/n on input line 103.
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/xmdeuf/m/n --> U/xmdeuf/b/n on input line 110.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/mdbch/m/n on input line 121.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/mdbch/m/it on input line 122.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/mdbch/m/n on input line 123.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/mdbch/m/n on input line 124.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/mdbch/b/n on input line 126.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/mdbch/b/it on input line 127.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/mdbch/b/n on input line 128.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/mdbch/b/n on input line 129.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `normal'
(Font) OT1/mdbch/m/n --> OT1/mdbch/m/n on input line 131.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/mdbch/b/n on input line 132.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/mdbch/m/it on input line 133.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/cmss/m/n on input line 134.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/cmtt/m/n on input line 135.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `bold'
(Font) OT1/mdbch/b/n --> OT1/mdbch/b/n on input line 137.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/mdbch/b/n on input line 138.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/mdbch/b/it on input line 139.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/cmss/b/n on input line 140.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/cmtt/b/n on input line 141.
\symlettersupright=\mathgroup7
LaTeX Font Info: Overwriting symbol font `lettersupright' in version `bold'
(Font) OML/mdbch/m/n --> OML/mdbch/b/n on input line 144.
LaTeX Font Info: Redeclaring math alphabet \mathrm on input line 145.
LaTeX Font Info: Overwriting math alphabet `\mathcal' in version `normal'
(Font) OMS/mdbch/m/n --> OMS/mdbch/m/n on input line 167.
(/opt/texlive/texdir/texmf-dist/tex/latex/xkeyval/xkeyval.sty
Package: xkeyval 2022/06/16 v2.9 package option processing (HA)
(/opt/texlive/texdir/texmf-dist/tex/generic/xkeyval/xkeyval.tex
(/opt/texlive/texdir/texmf-dist/tex/generic/xkeyval/xkvutils.tex
\XKV@toks=\toks39
\XKV@tempa@toks=\toks40
)
\XKV@depth=\count325
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
))
LaTeX Font Info: Trying to load font information for OT1+mdbch on input line
186.
(/opt/texlive/texdir/texmf-dist/tex/latex/mathdesign/mdbch/ot1mdbch.fd
File: ot1mdbch.fd 2013/08/29 Fontinst v1.933 font definitions for OT1/mdbch.
)
LaTeX Font Info: Font shape `OT1/mdbch/m/n' will be
(Font) scaled to size 9.60007pt on input line 186.
LaTeX Font Info: Redeclaring math accent \widetilde on input line 449.
LaTeX Font Info: Redeclaring math accent \widehat on input line 450.
Now handling font encoding MDA ...
... no UTF-8 mapping file for font encoding MDA
\symmathdesignA=\mathgroup8
LaTeX Font Info: Overwriting symbol font `mathdesignA' in version `bold'
(Font) MDA/mdbch/m/n --> MDA/mdbch/b/n on input line 491.
Now handling font encoding MDB ...
... no UTF-8 mapping file for font encoding MDB
\symmathdesignB=\mathgroup9
LaTeX Font Info: Overwriting symbol font `mathdesignB' in version `bold'
(Font) MDB/mdbch/m/n --> MDB/mdbch/b/n on input line 498.
\@emptytoks=\toks41
LaTeX Font Info: Redeclaring math accent \widetilde on input line 532.
LaTeX Font Info: Redeclaring math accent \widehat on input line 533.
\rulethickness=\skip66
)
(/opt/texlive/texdir/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+mdbch on input line
116.
(/opt/texlive/texdir/texmf-dist/tex/latex/mathdesign/mdbch/t1mdbch.fd
File: t1mdbch.fd 2013/08/29 Fontinst v1.933 font definitions for T1/mdbch.
)
LaTeX Font Info: Font shape `T1/mdbch/m/n' will be
(Font) scaled to size 9.60007pt on input line 116.
))
(/opt/texlive/texdir/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
File: l3backend-pdftex.def 2024-05-08 L3 backend support: PDF output (pdfTeX)
\l__color_backend_stack_int=\count326
\l__pdf_internal_box=\box65
)
LaTeX Warning: Unused global option(s):
[10.5pt].
(./main.aux)
\openout1 = `main.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 139.
LaTeX Font Info: ... okay on input line 139.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 139.
LaTeX Font Info: ... okay on input line 139.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 139.
LaTeX Font Info: ... okay on input line 139.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 139.
LaTeX Font Info: ... okay on input line 139.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 139.
LaTeX Font Info: ... okay on input line 139.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 139.
LaTeX Font Info: ... okay on input line 139.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 139.
LaTeX Font Info: ... okay on input line 139.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 139.
LaTeX Font Info: ... okay on input line 139.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 139.
LaTeX Font Info: ... okay on input line 139.
LaTeX Font Info: Checking defaults for MDA/cmr/m/n on input line 139.
LaTeX Font Info: Trying to load font information for MDA+cmr on input line 1
39.
(/opt/texlive/texdir/texmf-dist/tex/latex/mathdesign/mdacmr.fd
File: mdacmr.fd
)
LaTeX Font Info: ... okay on input line 139.
LaTeX Font Info: Checking defaults for MDB/cmr/m/n on input line 139.
LaTeX Font Info: Trying to load font information for MDB+cmr on input line 1
39.
(/opt/texlive/texdir/texmf-dist/tex/latex/mathdesign/mdbcmr.fd
File: mdbcmr.fd
)
LaTeX Font Info: ... okay on input line 139.
Package hyperref Info: Link coloring ON on input line 139.
(./main.out)
(./main.out)
\@outlinefile=\write4
\openout4 = `main.out'.
(/opt/texlive/texdir/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count327
\scratchdimen=\dimen272
\scratchbox=\box66
\nofMPsegments=\count328
\nofMParguments=\count329
\everyMPshowfont=\toks42
\MPscratchCnt=\count330
\MPscratchDim=\dimen273
\MPnumerator=\count331
\makeMPintoPDFobject=\count332
\everyMPtoPDFconversion=\toks43
) (/opt/texlive/texdir/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
(/opt/texlive/texdir/texmf-dist/tex/latex/grfext/grfext.sty
Package: grfext 2019/12/03 v1.3 Manage graphics extensions (HO)
)
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
85.
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 504.
(/opt/texlive/texdir/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: letterpaper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes: includefoot
* h-part:(L,W,R)=(50.58878pt, 513.11745pt, 50.58878pt)
* v-part:(T,H,B)=(72.26999pt, 542.02501pt, 180.67499pt)
* \paperwidth=614.295pt
* \paperheight=794.96999pt
* \textwidth=542.02498pt
* \textheight=657.65744pt
* \oddsidemargin=-36.135pt
* \evensidemargin=-57.81621pt
* \topmargin=-32.52126pt
* \headheight=18.06749pt
* \headsep=14.45377pt
* \topskip=10.0pt
* \footskip=25.0pt
* \marginparwidth=65.0pt
* \marginparsep=11.0pt
* \columnsep=10.0pt
* \skip\footins=9.0pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidefalse
* \@mparswitchfalse
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
LaTeX Font Info: Font shape `T1/mdbch/m/n' will be
(Font) scaled to size 8.64006pt on input line 143.
LaTeX Font Info: Font shape `T1/mdbch/b/n' will be
(Font) scaled to size 8.64006pt on input line 143.
LaTeX Font Info: Font shape `T1/mdbch/b/n' will be
(Font) scaled to size 19.91054pt on input line 143.
LaTeX Font Info: Font shape `T1/mdbch/m/n' will be
(Font) scaled to size 11.52008pt on input line 145.
LaTeX Font Info: Font shape `T1/cmss/m/n' will be
(Font) scaled to size 9.35101pt on input line 148.
LaTeX Font Info: Font shape `OT1/mdbch/m/n' will be
(Font) scaled to size 8.64006pt on input line 148.
LaTeX Font Info: Font shape `OT1/mdbch/m/n' will be
(Font) scaled to size 5.76004pt on input line 148.
LaTeX Font Info: Font shape `OT1/mdbch/m/n' will be
(Font) scaled to size 4.80003pt on input line 148.
LaTeX Font Info: Trying to load font information for OML+mdbch on input line
148.
(/opt/texlive/texdir/texmf-dist/tex/latex/mathdesign/mdbch/omlmdbch.fd
File: omlmdbch.fd 2013/08/29 Fontinst v1.933 font definitions for OML/mdbch.
)
LaTeX Font Info: Font shape `OML/mdbch/m/it' will be
(Font) scaled to size 8.64006pt on input line 148.
LaTeX Font Info: Font shape `OML/mdbch/m/it' will be
(Font) scaled to size 5.76004pt on input line 148.
LaTeX Font Info: Font shape `OML/mdbch/m/it' will be
(Font) scaled to size 4.80003pt on input line 148.
LaTeX Font Info: Trying to load font information for OMS+mdbch on input line
148.
(/opt/texlive/texdir/texmf-dist/tex/latex/mathdesign/mdbch/omsmdbch.fd
File: omsmdbch.fd 2013/08/29 Fontinst v1.933 font definitions for OMS/mdbch.
)
LaTeX Font Info: Font shape `OMS/mdbch/m/n' will be
(Font) scaled to size 8.64006pt on input line 148.
LaTeX Font Info: Font shape `OMS/mdbch/m/n' will be
(Font) scaled to size 5.76004pt on input line 148.
LaTeX Font Info: Font shape `OMS/mdbch/m/n' will be
(Font) scaled to size 4.80003pt on input line 148.
LaTeX Font Info: Trying to load font information for OMX+mdbch on input line
148.
(/opt/texlive/texdir/texmf-dist/tex/latex/mathdesign/mdbch/omxmdbch.fd
File: omxmdbch.fd 2013/08/29 Fontinst v1.933 font definitions for OMX/mdbch.
)
LaTeX Font Info: Font shape `OMX/mdbch/m/n' will be
(Font) scaled to size 8.64006pt on input line 148.
LaTeX Font Info: Font shape `OMX/mdbch/m/n' will be
(Font) scaled to size 5.76004pt on input line 148.
LaTeX Font Info: Font shape `OMX/mdbch/m/n' will be
(Font) scaled to size 4.80003pt on input line 148.