-
Notifications
You must be signed in to change notification settings - Fork 0
/
presentation4.log
1841 lines (1718 loc) · 63.7 KB
/
presentation4.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.6.29) (preloaded format=pdflatex 2020.8.25) 13 NOV 2020 15:15
entering extended mode
**./presentation4.tex
(presentation4.tex
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-07-17>
("C:\Program Files\MiKTeX\tex/latex/beamer\beamer.cls"
Document Class: beamer 2020/07/22 v3.59 A class for typesetting presentations
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasemodes.sty"
("C:\Program Files\MiKTeX\tex/latex/etoolbox\etoolbox.sty"
Package: etoolbox 2020/07/15 v2.5i e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count168
)
\beamer@tempbox=\box45
\beamer@tempcount=\count169
\c@beamerpauses=\count170
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasedecode.sty"
\beamer@slideinframe=\count171
\beamer@minimum=\count172
\beamer@decode@box=\box46
)
\beamer@commentbox=\box47
\beamer@modecount=\count173
)
("C:\Program Files\MiKTeX\tex/generic/iftex\ifpdf.sty"
Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead.
("C:\Program Files\MiKTeX\tex/generic/iftex\iftex.sty"
Package: iftex 2020/03/06 v1.0d TeX engine tests
))
\headdp=\dimen134
\footheight=\dimen135
\sidebarheight=\dimen136
\beamer@tempdim=\dimen137
\beamer@finalheight=\dimen138
\beamer@animht=\dimen139
\beamer@animdp=\dimen140
\beamer@animwd=\dimen141
\beamer@leftmargin=\dimen142
\beamer@rightmargin=\dimen143
\beamer@leftsidebar=\dimen144
\beamer@rightsidebar=\dimen145
\beamer@boxsize=\dimen146
\beamer@vboxoffset=\dimen147
\beamer@descdefault=\dimen148
\beamer@descriptionwidth=\dimen149
\beamer@lastskip=\skip47
\beamer@areabox=\box48
\beamer@animcurrent=\box49
\beamer@animshowbox=\box50
\beamer@sectionbox=\box51
\beamer@logobox=\box52
\beamer@linebox=\box53
\beamer@sectioncount=\count174
\beamer@subsubsectionmax=\count175
\beamer@subsectionmax=\count176
\beamer@sectionmax=\count177
\beamer@totalheads=\count178
\beamer@headcounter=\count179
\beamer@partstartpage=\count180
\beamer@sectionstartpage=\count181
\beamer@subsectionstartpage=\count182
\beamer@animationtempa=\count183
\beamer@animationtempb=\count184
\beamer@xpos=\count185
\beamer@ypos=\count186
\beamer@ypos@offset=\count187
\beamer@showpartnumber=\count188
\beamer@currentsubsection=\count189
\beamer@coveringdepth=\count190
\beamer@sectionadjust=\count191
\beamer@tocsectionnumber=\count192
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbaseoptions.sty"
("C:\Program Files\MiKTeX\tex/latex/graphics\keyval.sty"
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks15
))
\beamer@paperwidth=\skip48
\beamer@paperheight=\skip49
("C:\Program Files\MiKTeX\tex/latex/geometry\geometry.sty"
Package: geometry 2020/01/02 v5.9 Page Geometry
("C:\Program Files\MiKTeX\tex/generic/iftex\ifvtex.sty"
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
)
\Gm@cnth=\count193
\Gm@cntv=\count194
\c@Gm@tempcnt=\count195
\Gm@bindingoffset=\dimen150
\Gm@wd@mp=\dimen151
\Gm@odd@mp=\dimen152
\Gm@even@mp=\dimen153
\Gm@layoutwidth=\dimen154
\Gm@layoutheight=\dimen155
\Gm@layouthoffset=\dimen156
\Gm@layoutvoffset=\dimen157
\Gm@dimlist=\toks16
("C:\Program Files\MiKTeX\tex/latex/geometry\geometry.cfg"))
("C:\Program Files\MiKTeX\tex/latex/base\size10.clo"
File: size10.clo 2019/12/20 v1.4l Standard LaTeX file (size option)
)
("C:\Program Files\MiKTeX\tex/latex/pgf/basiclayer\pgfcore.sty"
("C:\Program Files\MiKTeX\tex/latex/graphics\graphicx.sty"
Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX\tex/latex/graphics\graphics.sty"
Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX\tex/latex/graphics\trig.sty"
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
("C:\Program Files\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.
("C:\Program Files\MiKTeX\tex/latex/graphics-def\pdftex.def"
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
))
\Gin@req@height=\dimen158
\Gin@req@width=\dimen159
)
("C:\Program Files\MiKTeX\tex/latex/pgf/systemlayer\pgfsys.sty"
("C:\Program Files\MiKTeX\tex/latex/pgf/utilities\pgfrcs.sty"
("C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-common.tex"
\pgfutil@everybye=\toks17
\pgfutil@tempdima=\dimen160
\pgfutil@tempdimb=\dimen161
("C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-common-lists.tex"))
("C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-latex.def"
\pgfutil@abb=\box54
("C:\Program Files\MiKTeX\tex/latex/ms\everyshi.sty"
Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS)
))
("C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfrcs.code.tex"
("C:\Program Files\MiKTeX\tex/generic/pgf\pgf.revision.tex")
Package: pgfrcs 2020/01/08 v3.1.5b (3.1.5b)
))
("C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys.code.tex"
Package: pgfsys 2020/01/08 v3.1.5b (3.1.5b)
("C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfkeys.code.tex"
\pgfkeys@pathtoks=\toks18
\pgfkeys@temptoks=\toks19
("C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfkeysfiltered.code.tex"
\pgfkeys@tmptoks=\toks20
))
\pgf@x=\dimen162
\pgf@y=\dimen163
\pgf@xa=\dimen164
\pgf@ya=\dimen165
\pgf@xb=\dimen166
\pgf@yb=\dimen167
\pgf@xc=\dimen168
\pgf@yc=\dimen169
\pgf@xd=\dimen170
\pgf@yd=\dimen171
\w@pgf@writea=\write3
\r@pgf@reada=\read2
\c@pgf@counta=\count196
\c@pgf@countb=\count197
\c@pgf@countc=\count198
\c@pgf@countd=\count199
\t@pgf@toka=\toks21
\t@pgf@tokb=\toks22
\t@pgf@tokc=\toks23
\pgf@sys@id@count=\count266
("C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgf.cfg"
File: pgf.cfg 2020/01/08 v3.1.5b (3.1.5b)
)
Driver file for pgf: pgfsys-pdftex.def
("C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys-pdftex.def"
File: pgfsys-pdftex.def 2020/01/08 v3.1.5b (3.1.5b)
("C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys-common-pdf.def"
File: pgfsys-common-pdf.def 2020/01/08 v3.1.5b (3.1.5b)
))) ("C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsyssoftpath.code.t
ex"
File: pgfsyssoftpath.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgfsyssoftpath@smallbuffer@items=\count267
\pgfsyssoftpath@bigbuffer@items=\count268
) ("C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsysprotocol.code.tex
"
File: pgfsysprotocol.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)) ("C:\Program Files\MiKTeX\tex/latex/xcolor\xcolor.sty"
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
("C:\Program Files\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.
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:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcore.code.tex"
Package: pgfcore 2020/01/08 v3.1.5b (3.1.5b)
("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmath.code.tex"
("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathcalc.code.tex"
("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathutil.code.tex")
("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathparser.code.tex"
\pgfmath@dimen=\dimen172
\pgfmath@count=\count269
\pgfmath@box=\box55
\pgfmath@toks=\toks24
\pgfmath@stack@operand=\toks25
\pgfmath@stack@operation=\toks26
)
("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.code.tex"
("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.basic.code.tex"
)
("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.trigonometric.c
ode.tex")
("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.random.code.tex
")
("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.comparison.code
.tex")
("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.base.code.tex")
("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.round.code.tex"
) ("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.misc.code.tex
")
("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.integerarithmet
ics.code.tex")))
("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfloat.code.tex"
\c@pgfmathroundto@lastzeros=\count270
))
("C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfint.code.tex")
("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepoints.code.tex"
File: pgfcorepoints.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgf@picminx=\dimen173
\pgf@picmaxx=\dimen174
\pgf@picminy=\dimen175
\pgf@picmaxy=\dimen176
\pgf@pathminx=\dimen177
\pgf@pathmaxx=\dimen178
\pgf@pathminy=\dimen179
\pgf@pathmaxy=\dimen180
\pgf@xx=\dimen181
\pgf@xy=\dimen182
\pgf@yx=\dimen183
\pgf@yy=\dimen184
\pgf@zx=\dimen185
\pgf@zy=\dimen186
)
("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathconstruct.code.
tex"
File: pgfcorepathconstruct.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgf@path@lastx=\dimen187
\pgf@path@lasty=\dimen188
)
("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathusage.code.tex"
File: pgfcorepathusage.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgf@shorten@end@additional=\dimen189
\pgf@shorten@start@additional=\dimen190
) ("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorescopes.code.tex"
File: pgfcorescopes.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgfpic=\box56
\pgf@hbox=\box57
\pgf@layerbox@main=\box58
\pgf@picture@serial@count=\count271
)
("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoregraphicstate.code.t
ex"
File: pgfcoregraphicstate.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgflinewidth=\dimen191
)
("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoretransformations.cod
e.tex"
File: pgfcoretransformations.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgf@pt@x=\dimen192
\pgf@pt@y=\dimen193
\pgf@pt@temp=\dimen194
)
("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorequick.code.tex"
File: pgfcorequick.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)
("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreobjects.code.tex"
File: pgfcoreobjects.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)
("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathprocessing.code
.tex"
File: pgfcorepathprocessing.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)
("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorearrows.code.tex"
File: pgfcorearrows.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgfarrowsep=\dimen195
)
("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreshade.code.tex"
File: pgfcoreshade.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgf@max=\dimen196
\pgf@sys@shading@range@num=\count272
\pgf@shadingcount=\count273
)
("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreimage.code.tex"
File: pgfcoreimage.code.tex 2020/01/08 v3.1.5b (3.1.5b)
("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreexternal.code.tex"
File: pgfcoreexternal.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgfexternal@startupbox=\box59
)) ("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorelayers.code.tex"
File: pgfcorelayers.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)
("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoretransparency.code.t
ex"
File: pgfcoretransparency.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)
("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepatterns.code.tex"
File: pgfcorepatterns.code.tex 2020/01/08 v3.1.5b (3.1.5b)
) ("C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorerdf.code.tex"
File: pgfcorerdf.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)))
("C:\Program Files\MiKTeX\tex/latex/pgf/utilities\xxcolor.sty"
Package: xxcolor 2003/10/24 ver 0.1
\XC@nummixins=\count274
\XC@countmixins=\count275
)
("C:\Program Files\MiKTeX\tex/generic/atbegshi\atbegshi.sty"
Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO)
("C:\Program Files\MiKTeX\tex/generic/infwarerr\infwarerr.sty"
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
("C:\Program Files\MiKTeX\tex/generic/ltxcmds\ltxcmds.sty"
Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO)
))
("C:\Program Files\MiKTeX\tex/latex/hyperref\hyperref.sty"
Package: hyperref 2020-05-15 v7.00e Hypertext links for LaTeX
("C:\Program Files\MiKTeX\tex/generic/pdftexcmds\pdftexcmds.sty"
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
("C:\Program Files\MiKTeX\tex/generic/kvsetkeys\kvsetkeys.sty"
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
)
("C:\Program Files\MiKTeX\tex/generic/kvdefinekeys\kvdefinekeys.sty"
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
("C:\Program Files\MiKTeX\tex/generic/pdfescape\pdfescape.sty"
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
("C:\Program Files\MiKTeX\tex/latex/hycolor\hycolor.sty"
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
("C:\Program Files\MiKTeX\tex/latex/letltxmacro\letltxmacro.sty"
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
("C:\Program Files\MiKTeX\tex/latex/auxhook\auxhook.sty"
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
("C:\Program Files\MiKTeX\tex/latex/kvoptions\kvoptions.sty"
Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO)
)
\@linkdim=\dimen197
\Hy@linkcounter=\count276
\Hy@pagecounter=\count277
("C:\Program Files\MiKTeX\tex/latex/hyperref\pd1enc.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:\Program Files\MiKTeX\tex/generic/intcalc\intcalc.sty"
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
("C:\Program Files\MiKTeX\tex/generic/etexcmds\etexcmds.sty"
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count278
Package hyperref Info: Option `bookmarks' set `true' on input line 4338.
Package hyperref Info: Option `bookmarksopen' set `true' on input line 4338.
Package hyperref Info: Option `implicit' set `false' on input line 4338.
Package hyperref Info: Hyper figures OFF on input line 4464.
Package hyperref Info: Link nesting OFF on input line 4469.
Package hyperref Info: Hyper index ON on input line 4472.
Package hyperref Info: Plain pages OFF on input line 4479.
Package hyperref Info: Backreferencing OFF on input line 4484.
Package hyperref Info: Implicit mode OFF; no redefinition of LaTeX internals.
Package hyperref Info: Bookmarks ON on input line 4717.
\c@Hy@tempcnt=\count279
("C:\Program Files\MiKTeX\tex/latex/url\url.sty"
\Urlmuskip=\muskip16
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 5076.
\XeTeXLinkMargin=\dimen198
("C:\Program Files\MiKTeX\tex/generic/bitset\bitset.sty"
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
("C:\Program Files\MiKTeX\tex/generic/bigintcalc\bigintcalc.sty"
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count280
\Field@Width=\dimen199
\Fld@charsize=\dimen256
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.
\Hy@abspage=\count281
Package hyperref Message: Stopped early.
)
Package hyperref Info: Driver (autodetected): hpdftex.
("C:\Program Files\MiKTeX\tex/latex/hyperref\hpdftex.def"
File: hpdftex.def 2020-05-15 v7.00e Hyperref driver for pdfTeX
("C:\Program Files\MiKTeX\tex/latex/atveryend\atveryend.sty"
Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO)
)
\Fld@listcount=\count282
\c@bookmark@seq@number=\count283
("C:\Program Files\MiKTeX\tex/latex/rerunfilecheck\rerunfilecheck.sty"
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
("C:\Program Files\MiKTeX\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
86.
))
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbaserequires.sty"
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasecompatibility.sty")
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasefont.sty"
("C:\Program Files\MiKTeX\tex/latex/amsfonts\amssymb.sty"
Package: amssymb 2013/01/14 v3.01 AMS font symbols
("C:\Program Files\MiKTeX\tex/latex/amsfonts\amsfonts.sty"
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\@emptytoks=\toks27
\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:\Program Files\MiKTeX\tex/latex/sansmathaccent\sansmathaccent.sty"
Package: sansmathaccent 2020/01/31
("C:\Program Files\MiKTeX\tex/latex/koma-script\scrlfile.sty"
Package: scrlfile 2020/07/22 v3.31 KOMA-Script package (loading files)
)))
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasetranslator.sty"
("C:\Program Files\MiKTeX\tex/latex/translator\translator.sty"
Package: translator 2019-05-31 v1.12a Easy translation of strings in LaTeX
))
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasemisc.sty")
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasetwoscreens.sty")
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbaseoverlay.sty"
\beamer@argscount=\count284
\beamer@lastskipcover=\skip50
\beamer@trivlistdepth=\count285
)
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasetitle.sty")
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasesection.sty"
\c@lecture=\count286
\c@part=\count287
\c@section=\count288
\c@subsection=\count289
\c@subsubsection=\count290
)
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbaseframe.sty"
\beamer@framebox=\box60
\beamer@frametitlebox=\box61
\beamer@zoombox=\box62
\beamer@zoomcount=\count291
\beamer@zoomframecount=\count292
\beamer@frametextheight=\dimen257
\c@subsectionslide=\count293
\beamer@frametopskip=\skip51
\beamer@framebottomskip=\skip52
\beamer@frametopskipautobreak=\skip53
\beamer@framebottomskipautobreak=\skip54
\beamer@envbody=\toks28
\framewidth=\dimen258
\c@framenumber=\count294
)
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbaseverbatim.sty"
\beamer@verbatimfileout=\write4
)
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbaseframesize.sty"
\beamer@splitbox=\box63
\beamer@autobreakcount=\count295
\beamer@autobreaklastheight=\dimen259
\beamer@frametitletoks=\toks29
\beamer@framesubtitletoks=\toks30
)
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbaseframecomponents.sty"
\beamer@footins=\box64
)
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasecolor.sty")
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasenotes.sty"
\beamer@frameboxcopy=\box65
)
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasetoc.sty")
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasetemplates.sty"
\beamer@sbttoks=\toks31
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbaseauxtemplates.sty"
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbaseboxes.sty"
\bmb@box=\box66
\bmb@colorbox=\box67
\bmb@boxshadow=\box68
\bmb@boxshadowball=\box69
\bmb@boxshadowballlarge=\box70
\bmb@temp=\dimen260
\bmb@dima=\dimen261
\bmb@dimb=\dimen262
\bmb@prevheight=\dimen263
)
\beamer@blockheadheight=\dimen264
))
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbaselocalstructure.sty"
("C:\Program Files\MiKTeX\tex/latex/tools\enumerate.sty"
Package: enumerate 2015/07/23 v3.00 enumerate extensions (DPC)
\@enLab=\toks32
)
\c@figure=\count296
\c@table=\count297
\abovecaptionskip=\skip55
\belowcaptionskip=\skip56
)
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasenavigation.sty"
\beamer@section@min@dim=\dimen265
)
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasetheorems.sty"
("C:\Program Files\MiKTeX\tex/latex/amsmath\amsmath.sty"
Package: amsmath 2020/01/20 v2.17e AMS math features
\@mathmargin=\skip57
For additional information on amsmath, use the `?' option.
("C:\Program Files\MiKTeX\tex/latex/amsmath\amstext.sty"
Package: amstext 2000/06/29 v2.01 AMS text
("C:\Program Files\MiKTeX\tex/latex/amsmath\amsgen.sty"
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks33
\ex@=\dimen266
))
("C:\Program Files\MiKTeX\tex/latex/amsmath\amsbsy.sty"
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen267
)
("C:\Program Files\MiKTeX\tex/latex/amsmath\amsopn.sty"
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count298
LaTeX Info: Redefining \frac on input line 227.
\uproot@=\count299
\leftroot@=\count300
LaTeX Info: Redefining \overline on input line 389.
\classnum@=\count301
\DOTSCASE@=\count302
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@=\box71
\strutbox@=\box72
\big@size=\dimen268
LaTeX Font Info: Redeclaring font encoding OML on input line 733.
LaTeX Font Info: Redeclaring font encoding OMS on input line 734.
\macc@depth=\count303
\c@MaxMatrixCols=\count304
\dotsspace@=\muskip17
\c@parentequation=\count305
\dspbrk@lvl=\count306
\tag@help=\toks34
\row@=\count307
\column@=\count308
\maxfields@=\count309
\andhelp@=\toks35
\eqnshift@=\dimen269
\alignsep@=\dimen270
\tagshift@=\dimen271
\tagwidth@=\dimen272
\totwidth@=\dimen273
\lineht@=\dimen274
\@envbody=\toks36
\multlinegap=\skip58
\multlinetaggap=\skip59
\mathdisplay@stack=\toks37
LaTeX Info: Redefining \[ on input line 2859.
LaTeX Info: Redefining \] on input line 2860.
)
("C:\Program Files\MiKTeX\tex/latex/amscls\amsthm.sty"
Package: amsthm 2020/05/29 v2.20.6
\thm@style=\toks38
\thm@bodyfont=\toks39
\thm@headfont=\toks40
\thm@notefont=\toks41
\thm@headpunct=\toks42
\thm@preskip=\skip60
\thm@postskip=\skip61
\thm@headsep=\skip62
\dth@everypar=\toks43
)
\c@theorem=\count310
)
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerbasethemes.sty"))
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerthemedefault.sty"
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerfontthemedefault.sty")
("C:\Program Files\MiKTeX\tex/latex/beamer\beamercolorthemedefault.sty")
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerinnerthemedefault.sty"
\beamer@dima=\dimen275
\beamer@dimb=\dimen276
)
("C:\Program Files\MiKTeX\tex/latex/beamer\beamerouterthemedefault.sty")))
("C:\Program Files\MiKTeX\tex/latex/media9\media9.sty"
("C:\Program Files\MiKTeX\tex/latex/l3kernel\expl3.sty"
Package: expl3 2020-07-17 L3 programming layer (loader)
("C:\Program Files\MiKTeX\tex/latex/l3backend\l3backend-pdfmode.def"
File: l3backend-pdfmode.def 2020-06-29 L3 backend support: PDF mode
\l__kernel_color_stack_int=\count311
\l__pdf_internal_box=\box73
))
("C:\Program Files\MiKTeX\tex/latex/l3packages/l3keys2e\l3keys2e.sty"
Package: l3keys2e 2020-05-15 LaTeX2e option processing using LaTeX3 keys
)
("C:\Program Files\MiKTeX\tex/latex/l3packages/xparse\xparse.sty"
Package: xparse 2020-05-15 L3 Experimental document command parser
("C:\Program Files\MiKTeX\tex/latex/l3packages/xparse\xparse-generic.tex"
\l__xparse_current_arg_int=\count312
\g__xparse_grabber_int=\count313
\l__xparse_m_args_int=\count314
\l__xparse_v_nesting_int=\count315
))
Package: media9 2020/07/08 v1.12 acrobat-9/X compatible media
\g_mix_pkgresizeflag_int=\count316
("C:\Program Files\MiKTeX\tex/latex/media9\pdfbase.sty"
Package: pdfbase 2020/07/08 v0.43 driver independent access to low-level PDF fe
atures
\g_pbs_page_int=\count317
\g_pbs_oc_int=\count318
)
("C:\Program Files\MiKTeX\tex/latex/ocgx2\ocgbase.sty"
Package: ocgbase 2019/11/04 v0.17 support package for ocgx2.sty
\g_ocgbase_nd_int=\count319
)
\l_mix_poster_box=\box74
\g_mix_wd_dim=\dimen277
\g_mix_ht_dim=\dimen278
\g_mix_dp_dim=\dimen279
\g_mix_rmcnt_int=\count320
\l_mix_viewcnt_int=\count321
\g@mix@page@int=\count322
\g_mix_resizeflag_int=\count323
\l_mix_lineno_int=\count324
\l_mix_pbtn_box=\box75
\mix@btn@dim=\dimen280
\g_mix_mbtncnt_int=\count325
)
("C:\Program Files\MiKTeX\tex/latex/base\inputenc.sty"
Package: inputenc 2018/08/11 v1.3c Input encoding file
\inpenc@prehook=\toks44
\inpenc@posthook=\toks45
)
("C:\Program Files\MiKTeX\tex/latex/tools\array.sty"
Package: array 2019/08/31 v2.4l Tabular extension package (FMi)
\col@sep=\dimen281
\ar@mcellbox=\box76
\extrarowheight=\dimen282
\NC@list=\toks46
\extratabsurround=\skip63
\backup@length=\skip64
\ar@cellbox=\box77
)
("C:\Program Files\MiKTeX\tex/latex/parskip\parskip.sty"
Package: parskip 2020-06-15 v2.0f non-zero parskip adjustments
)
("C:\Program Files\MiKTeX\tex/latex/caption\caption.sty"
Package: caption 2020/05/30 v3.4k Customizing captions (AR)
("C:\Program Files\MiKTeX\tex/latex/caption\caption3.sty"
Package: caption3 2020/07/20 v1.12b caption3 kernel (AR)
Package caption3 Info: TeX engine: e-TeX on input line 61.
\captionmargin=\dimen283
\captionmargin@=\dimen284
\captionwidth=\dimen285
\caption@tempdima=\dimen286
\caption@indent=\dimen287
\caption@parindent=\dimen288
\caption@hangindent=\dimen289
Package caption Info: beamer document class detected.
)
\c@caption@flags=\count326
\c@continuedfloat=\count327
Package caption Info: beamer document class.
Package caption Info: hyperref package is loaded.
Package caption Info: Hyperref support is turned off
(caption) because hyperref has stopped early.
)
("C:\Program Files\MiKTeX\tex/latex/caption\subcaption.sty"
Package: subcaption 2020/01/22 v1.3d Sub-captions (AR)
\c@subfigure=\count328
\c@subtable=\count329
)
\sympureletters=\mathgroup6
LaTeX Font Info: Overwriting symbol font `pureletters' in version `bold'
(Font) OT1/mathkerncmss/m/sl --> OT1/mathkerncmss/bx/sl on inp
ut line 15.
("C:\Program Files\MiKTeX\tex/latex/tools\bm.sty"
Package: bm 2019/07/24 v1.2d Bold Symbol Support (DPC/FMi)
\symboldoperators=\mathgroup7
\symboldletters=\mathgroup8
\symboldsymbols=\mathgroup9
\symboldpureletters=\mathgroup10
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 141.
LaTeX Info: Redefining \bm on input line 209.
)
("C:\Program Files\MiKTeX\tex/latex/amsmath\amscd.sty"
Package: amscd 2017/04/14 v2.1 AMS Commutative Diagrams
\athelp@=\toks47
\minaw@=\dimen290
\bigaw@=\dimen291
\minCDarrowwidth=\dimen292
)
("C:\Program Files\MiKTeX\tex/latex/units\units.sty"
Package: units 1998/08/04 v0.9b Typesetting units
("C:\Program Files\MiKTeX\tex/latex/base\ifthen.sty"
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
("C:\Program Files\MiKTeX\tex/latex/units\nicefrac.sty"
Package: nicefrac 1998/08/04 v0.9b Nice fractions
\L@UnitsRaiseDisplaystyle=\skip65
\L@UnitsRaiseTextstyle=\skip66
\L@UnitsRaiseScriptstyle=\skip67
))
("C:\Program Files\MiKTeX\tex/latex/listings\listings.sty"
\lst@mode=\count330
\lst@gtempboxa=\box78
\lst@token=\toks48
\lst@length=\count331
\lst@currlwidth=\dimen293
\lst@column=\count332
\lst@pos=\count333
\lst@lostspace=\dimen294
\lst@width=\dimen295
\lst@newlines=\count334
\lst@lineno=\count335
\lst@maxwidth=\dimen296
("C:\Program Files\MiKTeX\tex/latex/listings\lstmisc.sty"
File: lstmisc.sty 2020/03/24 1.8d (Carsten Heinz)
\c@lstnumber=\count336
\lst@skipnumbers=\count337
\lst@framebox=\box79
)
("C:\Program Files\MiKTeX\tex/latex/listings\listings.cfg"
File: listings.cfg 2020/03/24 1.8d listings configuration
))
Package: listings 2020/03/24 1.8d (Carsten Heinz)
("C:\Program Files\MiKTeX\tex/latex/tools\multicol.sty"
Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi)
\c@tracingmulticols=\count338
\mult@box=\box80
\multicol@leftmargin=\dimen297
\c@unbalance=\count339
\c@collectmore=\count340
\doublecol@number=\count341
\multicoltolerance=\count342
\multicolpretolerance=\count343
\full@width=\dimen298
\page@free=\dimen299
\premulticols=\dimen300
\postmulticols=\dimen301
\multicolsep=\skip68
\multicolbaselineskip=\skip69
\partial@page=\box81
\last@line=\box82
\maxbalancingoverflow=\dimen302
\mult@rightbox=\box83
\mult@grightbox=\box84
\mult@gfirstbox=\box85
\mult@firstbox=\box86
\@tempa=\box87
\@tempa=\box88
\@tempa=\box89
\@tempa=\box90
\@tempa=\box91
\@tempa=\box92
\@tempa=\box93
\@tempa=\box94
\@tempa=\box95
\@tempa=\box96
\@tempa=\box97
\@tempa=\box98
\@tempa=\box99
\@tempa=\box100
\@tempa=\box101
\@tempa=\box102
\@tempa=\box103
\@tempa=\box104
\@tempa=\box105
\@tempa=\box106
\@tempa=\box107
\@tempa=\box108
\@tempa=\box109
\@tempa=\box110
\@tempa=\box111
\@tempa=\box112
\@tempa=\box113
\@tempa=\box114
\@tempa=\box115
\@tempa=\box116
\@tempa=\box117
\@tempa=\box118
\@tempa=\box119
\@tempa=\box120
\@tempa=\box121
\@tempa=\box122
\@tempa=\box123
\c@minrows=\count344
\c@columnbadness=\count345
\c@finalcolumnbadness=\count346
\last@try=\dimen303
\multicolovershoot=\dimen304
\multicolundershoot=\dimen305
\mult@nat@firstbox=\box124
\colbreak@box=\box125
\mc@col@check@num=\count347
)
("C:\Program Files\MiKTeX\tex/latex/multirow\multirow.sty"
Package: multirow 2019/05/31 v2.5 Span multiple rows of a table
\multirow@colwidth=\skip70
\multirow@cntb=\count348
\multirow@dima=\skip71
\bigstrutjot=\dimen306
)
("C:\Program Files\MiKTeX\tex/latex/tcolorbox\tcolorbox.sty"
Package: tcolorbox 2020/04/28 version 4.30 text color boxes
("C:\Program Files\MiKTeX\tex/latex/pgf/basiclayer\pgf.sty"
Package: pgf 2020/01/08 v3.1.5b (3.1.5b)
("C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmoduleshapes.code.tex"
File: pgfmoduleshapes.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgfnodeparttextbox=\box126
)
("C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmoduleplot.code.tex"
File: pgfmoduleplot.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)
("C:\Program Files\MiKTeX\tex/latex/pgf/compatibility\pgfcomp-version-0-65.sty"
Package: pgfcomp-version-0-65 2020/01/08 v3.1.5b (3.1.5b)
\pgf@nodesepstart=\dimen307
\pgf@nodesepend=\dimen308
) ("C:\Program Files\MiKTeX\tex/latex/pgf/compatibility\pgfcomp-version-1-18.st
y"
Package: pgfcomp-version-1-18 2020/01/08 v3.1.5b (3.1.5b)
)) ("C:\Program Files\MiKTeX\tex/latex/tools\verbatim.sty"
Package: verbatim 2019/11/10 v1.5r LaTeX2e package for verbatim enhancements
\every@verbatim=\toks49
\verbatim@line=\toks50
\verbatim@in@stream=\read3
)
("C:\Program Files\MiKTeX\tex/latex/environ\environ.sty"
Package: environ 2014/05/04 v0.3 A new way to define environments
("C:\Program Files\MiKTeX\tex/latex/trimspaces\trimspaces.sty"
Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
))
\tcb@titlebox=\box127
\tcb@upperbox=\box128
\tcb@lowerbox=\box129
\tcb@phantombox=\box130
\c@tcbbreakpart=\count349
\c@tcblayer=\count350
\c@tcolorbox@number=\count351
\tcb@temp=\box131
\tcb@temp=\box132
\tcb@temp=\box133
\tcb@temp=\box134
\tcb@out=\write5
\tcb@record@out=\write6
)
("C:\Program Files\MiKTeX\tex/latex/physics\physics.sty"
Package: physics
)
("C:\Program Files\MiKTeX\tex/latex/base\fontenc.sty"
Package: fontenc 2020/02/11 v2.0o Standard LaTeX package
)
("C:\Program Files\MiKTeX\tex/generic/babel\babel.sty"
Package: babel 2020/07/13 3.47 The Babel package
("C:\Program Files\MiKTeX\tex/generic/babel\babel.def"
File: babel.def 2020/07/13 3.47 Babel common definitions
\babel@savecnt=\count352
\U@D=\dimen309
\l@babelnohyphens=\language79
("C:\Program Files\MiKTeX\tex/generic/babel\txtbabel.def")
\bbl@readstream=\read4
)
LaTeX Info: Redefining \textlatin on input line 682.
\bbl@dirlevel=\count353
*************************************
* Local config file bblopts.cfg used
*
("C:\Program Files\MiKTeX\tex/latex/arabi\bblopts.cfg"
File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of
babel
)
("C:\Program Files\MiKTeX\tex/latex/babel-portuges\portuguese.ldf"
Language: portuges 2020/05/04 v1.2r Portuguese support from the babel system
Package babel Info: Making " an active character on input line 143.
))
("C:\Program Files\MiKTeX\tex/latex/hyphenat\hyphenat.sty"
Package: hyphenat 2009/09/02 v2.3c hyphenation utilities
\langwohyphens=\language80
LaTeX Info: Redefining \_ on input line 43.
)
Package hyperref Info: Option `colorlinks' set `true' on input line 40.
("C:\Program Files\MiKTeX\tex/latex/psnfss\pifont.sty"
Package: pifont 2020/03/25 PSNFSS-v9.3 Pi font support (SPQR)
LaTeX Font Info: Trying to load font information for U+pzd on input line 63.
("C:\Program Files\MiKTeX\tex/latex/psnfss\upzd.fd"
File: upzd.fd 2001/06/04 font definitions for U/pzd.
)
LaTeX Font Info: Trying to load font information for U+psy on input line 64.
("C:\Program Files\MiKTeX\tex/latex/psnfss\upsy.fd"
File: upsy.fd 2001/06/04 font definitions for U/psy.
))
("C:\Program Files\MiKTeX\tex/latex/algorithm2e\algorithm2e.sty"
Package: algorithm2e 2017/07/18 v5.2 algorithms environments
\c@AlgoLine=\count354
\algocf@hangindent=\skip72
("C:\Program Files\MiKTeX\tex/latex/ifoddpage\ifoddpage.sty"
Package: ifoddpage 2016/04/23 v1.1 Conditionals for odd/even page detection
\c@checkoddpage=\count355
)
("C:\Program Files\MiKTeX\tex/latex/tools\xspace.sty"
Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH)
)
("C:\Program Files\MiKTeX\tex/latex/relsize\relsize.sty"
Package: relsize 2013/03/29 ver 4.1
)
\skiptotal=\skip73
\skiplinenumber=\skip74
\skiprule=\skip75
\skiphlne=\skip76
\skiptext=\skip77
\skiplength=\skip78
\algomargin=\skip79
\skipalgocfslide=\skip80
\algowidth=\dimen310
\inoutsize=\dimen311
\inoutindent=\dimen312
\interspacetitleruled=\dimen313
\interspacealgoruled=\dimen314
\interspacetitleboxruled=\dimen315
\algocf@ruledwidth=\skip81
\algocf@inoutbox=\box135
\algocf@inputbox=\box136
\AlCapSkip=\skip82
\AlCapHSkip=\skip83
\algoskipindent=\skip84
\algocf@nlbox=\box137
\algocf@hangingbox=\box138
\algocf@untilbox=\box139