-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPR8.log
1107 lines (1026 loc) · 41.1 KB
/
PR8.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is pdfTeX, Version 3.141592653-2.6-1.40.24 (MiKTeX 22.10) (preloaded format=pdflatex 2022.10.17) 15 DEC 2022 21:22
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**./PR8.tex
(PR8.tex
LaTeX2e <2022-06-01> patch level 5
L3 programming layer <2022-09-28>
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/extsizes\extreport.cls
Document Class: extreport 1996/10/08 v1.0 Non Standard LaTeX document class
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/extsizes\size14.clo
File: size14.clo 1999/11/11 v1.4a NON-Standard LaTeX file (size option)
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/base\exscale.sty
Package: exscale 2018/09/24 v2.1i Standard LaTeX package exscale
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 57.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/cmex/m/n on input line 57.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/cmex/m/n on input line 57.
\big@size=\dimen138
)
\c@part=\count185
\c@chapter=\count186
\c@section=\count187
\c@subsection=\count188
\c@subsubsection=\count189
\c@paragraph=\count190
\c@subparagraph=\count191
\c@figure=\count192
\c@table=\count193
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen139
)
(gost.sty
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/geometry\geometry.sty
Package: geometry 2020/01/02 v5.9 Page Geometry
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/graphics\keyval.sty
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
\KV@toks@=\toks16
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/generic/iftex\ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/generic/iftex\iftex.sty
Package: iftex 2022/02/03 v1.0f TeX engine tests
))
\Gm@cnth=\count194
\Gm@cntv=\count195
\c@Gm@tempcnt=\count196
\Gm@bindingoffset=\dimen140
\Gm@wd@mp=\dimen141
\Gm@odd@mp=\dimen142
\Gm@even@mp=\dimen143
\Gm@layoutwidth=\dimen144
\Gm@layoutheight=\dimen145
\Gm@layouthoffset=\dimen146
\Gm@layoutvoffset=\dimen147
\Gm@dimlist=\toks17
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/geometry\geometry.cfg))
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/base\inputenc.sty
Package: inputenc 2021/02/14 v1.3d Input encoding file
\inpenc@prehook=\toks18
\inpenc@posthook=\toks19
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/base\fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/cyrillic\t2aenc.def
File: t2aenc.def 2022/06/11 v1.0j Cyrillic encoding definition file
Now handling font encoding T2A ...
... processing UTF-8 mapping file for font encoding T2A
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/base\t2aenc.dfu
File: t2aenc.dfu 2022/06/07 v1.3c UTF-8 support
defining Unicode char U+00A4 (decimal 164)
defining Unicode char U+00A7 (decimal 167)
defining Unicode char U+00AB (decimal 171)
defining Unicode char U+00BB (decimal 187)
defining Unicode char U+0131 (decimal 305)
defining Unicode char U+0237 (decimal 567)
defining Unicode char U+0400 (decimal 1024)
defining Unicode char U+0401 (decimal 1025)
defining Unicode char U+0402 (decimal 1026)
defining Unicode char U+0403 (decimal 1027)
defining Unicode char U+0404 (decimal 1028)
defining Unicode char U+0405 (decimal 1029)
defining Unicode char U+0406 (decimal 1030)
defining Unicode char U+0407 (decimal 1031)
defining Unicode char U+0408 (decimal 1032)
defining Unicode char U+0409 (decimal 1033)
defining Unicode char U+040A (decimal 1034)
defining Unicode char U+040B (decimal 1035)
defining Unicode char U+040C (decimal 1036)
defining Unicode char U+040D (decimal 1037)
defining Unicode char U+040E (decimal 1038)
defining Unicode char U+040F (decimal 1039)
defining Unicode char U+0410 (decimal 1040)
defining Unicode char U+0411 (decimal 1041)
defining Unicode char U+0412 (decimal 1042)
defining Unicode char U+0413 (decimal 1043)
defining Unicode char U+0414 (decimal 1044)
defining Unicode char U+0415 (decimal 1045)
defining Unicode char U+0416 (decimal 1046)
defining Unicode char U+0417 (decimal 1047)
defining Unicode char U+0418 (decimal 1048)
defining Unicode char U+0419 (decimal 1049)
defining Unicode char U+041A (decimal 1050)
defining Unicode char U+041B (decimal 1051)
defining Unicode char U+041C (decimal 1052)
defining Unicode char U+041D (decimal 1053)
defining Unicode char U+041E (decimal 1054)
defining Unicode char U+041F (decimal 1055)
defining Unicode char U+0420 (decimal 1056)
defining Unicode char U+0421 (decimal 1057)
defining Unicode char U+0422 (decimal 1058)
defining Unicode char U+0423 (decimal 1059)
defining Unicode char U+0424 (decimal 1060)
defining Unicode char U+0425 (decimal 1061)
defining Unicode char U+0426 (decimal 1062)
defining Unicode char U+0427 (decimal 1063)
defining Unicode char U+0428 (decimal 1064)
defining Unicode char U+0429 (decimal 1065)
defining Unicode char U+042A (decimal 1066)
defining Unicode char U+042B (decimal 1067)
defining Unicode char U+042C (decimal 1068)
defining Unicode char U+042D (decimal 1069)
defining Unicode char U+042E (decimal 1070)
defining Unicode char U+042F (decimal 1071)
defining Unicode char U+0430 (decimal 1072)
defining Unicode char U+0431 (decimal 1073)
defining Unicode char U+0432 (decimal 1074)
defining Unicode char U+0433 (decimal 1075)
defining Unicode char U+0434 (decimal 1076)
defining Unicode char U+0435 (decimal 1077)
defining Unicode char U+0436 (decimal 1078)
defining Unicode char U+0437 (decimal 1079)
defining Unicode char U+0438 (decimal 1080)
defining Unicode char U+0439 (decimal 1081)
defining Unicode char U+043A (decimal 1082)
defining Unicode char U+043B (decimal 1083)
defining Unicode char U+043C (decimal 1084)
defining Unicode char U+043D (decimal 1085)
defining Unicode char U+043E (decimal 1086)
defining Unicode char U+043F (decimal 1087)
defining Unicode char U+0440 (decimal 1088)
defining Unicode char U+0441 (decimal 1089)
defining Unicode char U+0442 (decimal 1090)
defining Unicode char U+0443 (decimal 1091)
defining Unicode char U+0444 (decimal 1092)
defining Unicode char U+0445 (decimal 1093)
defining Unicode char U+0446 (decimal 1094)
defining Unicode char U+0447 (decimal 1095)
defining Unicode char U+0448 (decimal 1096)
defining Unicode char U+0449 (decimal 1097)
defining Unicode char U+044A (decimal 1098)
defining Unicode char U+044B (decimal 1099)
defining Unicode char U+044C (decimal 1100)
defining Unicode char U+044D (decimal 1101)
defining Unicode char U+044E (decimal 1102)
defining Unicode char U+044F (decimal 1103)
defining Unicode char U+0450 (decimal 1104)
defining Unicode char U+0451 (decimal 1105)
defining Unicode char U+0452 (decimal 1106)
defining Unicode char U+0453 (decimal 1107)
defining Unicode char U+0454 (decimal 1108)
defining Unicode char U+0455 (decimal 1109)
defining Unicode char U+0456 (decimal 1110)
defining Unicode char U+0457 (decimal 1111)
defining Unicode char U+0458 (decimal 1112)
defining Unicode char U+0459 (decimal 1113)
defining Unicode char U+045A (decimal 1114)
defining Unicode char U+045B (decimal 1115)
defining Unicode char U+045C (decimal 1116)
defining Unicode char U+045D (decimal 1117)
defining Unicode char U+045E (decimal 1118)
defining Unicode char U+045F (decimal 1119)
defining Unicode char U+0490 (decimal 1168)
defining Unicode char U+0491 (decimal 1169)
defining Unicode char U+0492 (decimal 1170)
defining Unicode char U+0493 (decimal 1171)
defining Unicode char U+0496 (decimal 1174)
defining Unicode char U+0497 (decimal 1175)
defining Unicode char U+0498 (decimal 1176)
defining Unicode char U+0499 (decimal 1177)
defining Unicode char U+049A (decimal 1178)
defining Unicode char U+049B (decimal 1179)
defining Unicode char U+049C (decimal 1180)
defining Unicode char U+049D (decimal 1181)
defining Unicode char U+04A0 (decimal 1184)
defining Unicode char U+04A1 (decimal 1185)
defining Unicode char U+04A2 (decimal 1186)
defining Unicode char U+04A3 (decimal 1187)
defining Unicode char U+04A4 (decimal 1188)
defining Unicode char U+04A5 (decimal 1189)
defining Unicode char U+04AA (decimal 1194)
defining Unicode char U+04AB (decimal 1195)
defining Unicode char U+04AE (decimal 1198)
defining Unicode char U+04AF (decimal 1199)
defining Unicode char U+04B0 (decimal 1200)
defining Unicode char U+04B1 (decimal 1201)
defining Unicode char U+04B2 (decimal 1202)
defining Unicode char U+04B3 (decimal 1203)
defining Unicode char U+04B6 (decimal 1206)
defining Unicode char U+04B7 (decimal 1207)
defining Unicode char U+04B8 (decimal 1208)
defining Unicode char U+04B9 (decimal 1209)
defining Unicode char U+04BA (decimal 1210)
defining Unicode char U+04BB (decimal 1211)
defining Unicode char U+04C0 (decimal 1216)
defining Unicode char U+04C1 (decimal 1217)
defining Unicode char U+04C2 (decimal 1218)
defining Unicode char U+04D0 (decimal 1232)
defining Unicode char U+04D1 (decimal 1233)
defining Unicode char U+04D2 (decimal 1234)
defining Unicode char U+04D3 (decimal 1235)
defining Unicode char U+04D4 (decimal 1236)
defining Unicode char U+04D5 (decimal 1237)
defining Unicode char U+04D6 (decimal 1238)
defining Unicode char U+04D7 (decimal 1239)
defining Unicode char U+04D8 (decimal 1240)
defining Unicode char U+04D9 (decimal 1241)
defining Unicode char U+04DA (decimal 1242)
defining Unicode char U+04DB (decimal 1243)
defining Unicode char U+04DC (decimal 1244)
defining Unicode char U+04DD (decimal 1245)
defining Unicode char U+04DE (decimal 1246)
defining Unicode char U+04DF (decimal 1247)
defining Unicode char U+04E2 (decimal 1250)
defining Unicode char U+04E3 (decimal 1251)
defining Unicode char U+04E4 (decimal 1252)
defining Unicode char U+04E5 (decimal 1253)
defining Unicode char U+04E6 (decimal 1254)
defining Unicode char U+04E7 (decimal 1255)
defining Unicode char U+04E8 (decimal 1256)
defining Unicode char U+04E9 (decimal 1257)
defining Unicode char U+04EC (decimal 1260)
defining Unicode char U+04ED (decimal 1261)
defining Unicode char U+04EE (decimal 1262)
defining Unicode char U+04EF (decimal 1263)
defining Unicode char U+04F0 (decimal 1264)
defining Unicode char U+04F1 (decimal 1265)
defining Unicode char U+04F2 (decimal 1266)
defining Unicode char U+04F3 (decimal 1267)
defining Unicode char U+04F4 (decimal 1268)
defining Unicode char U+04F5 (decimal 1269)
defining Unicode char U+04F8 (decimal 1272)
defining Unicode char U+04F9 (decimal 1273)
defining Unicode char U+200C (decimal 8204)
defining Unicode char U+2013 (decimal 8211)
defining Unicode char U+2014 (decimal 8212)
defining Unicode char U+2018 (decimal 8216)
defining Unicode char U+2019 (decimal 8217)
defining Unicode char U+201C (decimal 8220)
defining Unicode char U+201D (decimal 8221)
defining Unicode char U+201E (decimal 8222)
defining Unicode char U+2030 (decimal 8240)
defining Unicode char U+2031 (decimal 8241)
defining Unicode char U+2116 (decimal 8470)
defining Unicode char U+2329 (decimal 9001)
defining Unicode char U+3008 (decimal 12296)
defining Unicode char U+232A (decimal 9002)
defining Unicode char U+3009 (decimal 12297)
defining Unicode char U+2423 (decimal 9251)
defining Unicode char U+27E8 (decimal 10216)
defining Unicode char U+27E9 (decimal 10217)
defining Unicode char U+FB00 (decimal 64256)
defining Unicode char U+FB01 (decimal 64257)
defining Unicode char U+FB02 (decimal 64258)
defining Unicode char U+FB03 (decimal 64259)
defining Unicode char U+FB04 (decimal 64260)
defining Unicode char U+FB05 (decimal 64261)
defining Unicode char U+FB06 (decimal 64262)
))
LaTeX Font Info: Trying to load font information for T2A+cmr on input line 1
12.
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/cyrillic\t2acmr.fd
File: t2acmr.fd 2001/08/11 v1.0a Computer Modern Cyrillic font definitions
))
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/generic/babel\babel.sty
Package: babel 2022/10/04 3.81 The Babel package
\babel@savecnt=\count197
\U@D=\dimen148
\l@unhyphenated=\language79
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/generic/babel\txtbabel.def)
\bbl@readstream=\read2
\bbl@dirlevel=\count198
*************************************
* Local config file bblopts.cfg used
*
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/arabi\bblopts.cfg
File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of
babel
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/babel-russian\russianb.l
df
File: russianb.ldf 2021/01/10 1.3m Russian support for the Babel system
Language: russian 2020/09/09 1.3k Russian support for the Babel system
Package babel Info: Making " an active character on input line 124.
Package babel Info: Default for \cyrdash is provided on input line 163.
))
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/generic/babel/locale/ru\babel-
russian.tex
Package babel Info: Importing font and identification data for russian
(babel) from babel-ru.ini. Reported on input line 11.
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\hyperref.sty
Package: hyperref 2022-09-22 v7.00t Hypertext links for LaTeX
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/generic/ltxcmds\ltxcmds.sty
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
)
(C:\Users\user\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\user\AppData\Local\Programs\MiKTeX\tex/generic/infwarerr\infwarerr.st
y
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\user\AppData\Local\Programs\MiKTeX\tex/latex/kvsetkeys\kvsetkeys.sty
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/generic/kvdefinekeys\kvdefinek
eys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/generic/pdfescape\pdfescape.st
y
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
) (C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/hycolor\hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/letltxmacro\letltxmacro.
sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
) (C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/auxhook\auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
) (C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\nameref.sty
Package: nameref 2022-05-17 v2.50 Cross-referencing by name of section
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/refcount\refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/generic/gettitlestring\gettitl
estring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/kvoptions\kvoptions.sty
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
))
\c@section@level=\count199
)
\@linkdim=\dimen149
\Hy@linkcounter=\count266
\Hy@pagecounter=\count267
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\pd1enc.def
File: pd1enc.def 2022-09-22 v7.00t Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/generic/intcalc\intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/generic/etexcmds\etexcmds.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count268
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\puenc.def
File: puenc.def 2022-09-22 v7.00t Hyperref: PDF Unicode definition (HO)
Now handling font encoding PU ...
... no UTF-8 mapping file for font encoding PU
)
Package hyperref Info: Option `unicode' set `true' on input line 3149.
Package hyperref Info: Option `unicode' set `true' on input line 4045.
Package hyperref Info: Hyper figures OFF on input line 4162.
Package hyperref Info: Link nesting OFF on input line 4167.
Package hyperref Info: Hyper index ON on input line 4170.
Package hyperref Info: Plain pages OFF on input line 4177.
Package hyperref Info: Backreferencing OFF on input line 4182.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
\stockwidth=\dimen150
\stockheight=\dimen151
Package hyperref Info: Bookmarks ON on input line 4410.
\c@Hy@tempcnt=\count269
(C:\Users\user\AppData\Local\Programs\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 4748.
\XeTeXLinkMargin=\dimen152
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/generic/bitset\bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/generic/bigintcalc\bigintcalc.
sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count270
\Field@Width=\dimen153
\Fld@charsize=\dimen154
Package hyperref Info: Hyper figures OFF on input line 6027.
Package hyperref Info: Link nesting OFF on input line 6032.
Package hyperref Info: Hyper index ON on input line 6035.
Package hyperref Info: backreferencing OFF on input line 6042.
Package hyperref Info: Link coloring OFF on input line 6047.
Package hyperref Info: Link coloring with OCG OFF on input line 6052.
Package hyperref Info: PDF/A mode OFF on input line 6057.
(C:\Users\user\AppData\Local\Programs\MiKTeX\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=\count271
\c@Item=\count272
\c@Hfootnote=\count273
)
Package hyperref Info: Driver: hpdftex.
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\hpdftex.def
File: hpdftex.def 2022-09-22 v7.00t Hyperref driver for pdfTeX
(C:\Users\user\AppData\Local\Programs\MiKTeX\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=\count274
\c@bookmark@seq@number=\count275
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/rerunfilecheck\rerunfile
check.sty
Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/generic/uniquecounter\uniqueco
unter.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=\skip49
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/pdfpages\pdfpages.sty
Package: pdfpages 2022/10/09 v0.5w Insert pages of external PDF documents (AM)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/base\ifthen.sty
Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC)
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/tools\calc.sty
Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count276
\calc@Bcount=\count277
\calc@Adimen=\dimen155
\calc@Bdimen=\dimen156
\calc@Askip=\skip50
\calc@Bskip=\skip51
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count278
\calc@Cskip=\skip52
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/eso-pic\eso-pic.sty
Package: eso-pic 2020/10/14 v3.0a eso-pic (RN)
\ESO@tempdima=\dimen157
\ESO@tempdimb=\dimen158
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/xcolor\xcolor.sty
Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK)
(C:\Users\user\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 227.
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/graphics-def\pdftex.def
File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex
) (C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/graphics\mathcolor.ltx
)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1357.
Package xcolor Info: Model `RGB' extended on input line 1369.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376.
)) (C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/graphics\graphicx.sty
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/graphics\graphics.sty
Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/graphics\trig.sty
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/graphics-cfg\graphics.cf
g
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 107.
)
\Gin@req@height=\dimen159
\Gin@req@width=\dimen160
)
\AM@pagewidth=\dimen161
\AM@pageheight=\dimen162
\AM@fboxrule=\dimen163
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/pdfpages\pppdftex.def
File: pppdftex.def 2022/10/09 v0.5w Pdfpages driver for pdfTeX (AM)
)
\pdfpages@includegraphics@status=\count279
\AM@pagebox=\box51
\AM@global@opts=\toks20
\AM@pagecnt=\count280
\AM@toc@title=\toks21
\c@AM@survey=\count281
\AM@templatesizebox=\box52
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/tocbibind\tocbibind.sty
Package: tocbibind 2010/10/13 v1.5k extra ToC listings
Package tocbibind Info: The document has chapter divisions on input line 50.
Package tocbibind Note: Using chapter style headings, unless overridden.
) (C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/setspace\setspace.sty
Package: setspace 2011/12/19 v6.7a set line spacing
) (C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/cite\cite.sty
LaTeX Info: Redefining \cite on input line 302.
LaTeX Info: Redefining \nocite on input line 332.
Package: cite 2015/02/27 v 5.5
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/tools\indentfirst.sty
Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC)
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/tools\enumerate.sty
Package: enumerate 2015/07/23 v3.00 enumerate extensions (DPC)
\@enLab=\toks22
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/tools\longtable.sty
Package: longtable 2021-09-01 v4.17 Multi-page Table package (DPC)
\LTleft=\skip53
\LTright=\skip54
\LTpre=\skip55
\LTpost=\skip56
\LTchunksize=\count282
\LTcapwidth=\dimen164
\LT@head=\box53
\LT@firsthead=\box54
\LT@foot=\box55
\LT@lastfoot=\box56
\LT@gbox=\box57
\LT@cols=\count283
\LT@rows=\count284
\c@LT@tables=\count285
\c@LT@chunks=\count286
\LT@p@ftn=\toks23
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/multirow\multirow.sty
Package: multirow 2021/03/15 v2.8 Span multiple rows of a table
\multirow@colwidth=\skip57
\multirow@cntb=\count287
\multirow@dima=\skip58
\bigstrutjot=\dimen165
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/makecell\makecell.sty
Package: makecell 2009/08/03 V0.1e Managing of Tab Column Heads and Cells
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/tools\array.sty
Package: array 2022/03/10 v2.5f Tabular extension package (FMi)
\col@sep=\dimen166
\ar@mcellbox=\box58
\extrarowheight=\dimen167
\NC@list=\toks24
\extratabsurround=\skip59
\backup@length=\skip60
\ar@cellbox=\box59
)
\rotheadsize=\dimen168
\c@nlinenum=\count288
\TeXr@lab=\toks25
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/float\float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count289
\float@exts=\toks26
\float@box=\box60
\@float@everytoks=\toks27
\@floatcapt=\box61
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/pdflscape\pdflscape.sty
Package: pdflscape 2019/12/05 v0.12 Display of landscape pages in PDF (HO)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/graphics\lscape.sty
Package: lscape 2020/05/28 v3.02 Landscape Pages (DPC)
)
Package pdflscape Info: Auto-detected driver: pdftex on input line 81.
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/fancyvrb\fancyvrb.sty
Package: fancyvrb 2022/06/06 4.5 verbatim text (tvz,hv)
\FV@CodeLineNo=\count290
\FV@InFile=\read3
\FV@TabBox=\box62
\c@FancyVerbLine=\count291
\FV@StepNumber=\count292
\FV@OutFile=\write3
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\@emptytoks=\toks28
\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\user\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsmath.sty
Package: amsmath 2022/04/08 v2.17n AMS math features
\@mathmargin=\skip61
For additional information on amsmath, use the `?' option.
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amstext.sty
Package: amstext 2021/08/26 v2.01 AMS text
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks29
\ex@=\dimen169
))
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen170
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsopn.sty
Package: amsopn 2022/04/08 v2.04 operator names
)
\inf@bad=\count293
LaTeX Info: Redefining \frac on input line 234.
\uproot@=\count294
\leftroot@=\count295
LaTeX Info: Redefining \overline on input line 399.
LaTeX Info: Redefining \colon on input line 410.
\classnum@=\count296
\DOTSCASE@=\count297
LaTeX Info: Redefining \ldots on input line 496.
LaTeX Info: Redefining \dots on input line 499.
LaTeX Info: Redefining \cdots on input line 620.
\Mathstrutbox@=\box63
\strutbox@=\box64
LaTeX Info: Redefining \big on input line 722.
LaTeX Info: Redefining \Big on input line 723.
LaTeX Info: Redefining \bigg on input line 724.
LaTeX Info: Redefining \Bigg on input line 725.
\big@size=\dimen171
LaTeX Font Info: Redeclaring font encoding OML on input line 743.
LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
\macc@depth=\count298
LaTeX Info: Redefining \bmod on input line 905.
LaTeX Info: Redefining \pmod on input line 910.
LaTeX Info: Redefining \smash on input line 940.
LaTeX Info: Redefining \relbar on input line 970.
LaTeX Info: Redefining \Relbar on input line 971.
\c@MaxMatrixCols=\count299
\dotsspace@=\muskip17
\c@parentequation=\count300
\dspbrk@lvl=\count301
\tag@help=\toks30
\row@=\count302
\column@=\count303
\maxfields@=\count304
\andhelp@=\toks31
\eqnshift@=\dimen172
\alignsep@=\dimen173
\tagshift@=\dimen174
\tagwidth@=\dimen175
\totwidth@=\dimen176
\lineht@=\dimen177
\@envbody=\toks32
\multlinegap=\skip62
\multlinetaggap=\skip63
\mathdisplay@stack=\toks33
LaTeX Info: Redefining \[ on input line 2953.
LaTeX Info: Redefining \] on input line 2954.
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/base\latexsym.sty
Package: latexsym 1998/08/17 v2.2e Standard LaTeX package (lasy symbols)
\symlasy=\mathgroup6
LaTeX Font Info: Overwriting symbol font `lasy' in version `bold'
(Font) U/lasy/m/n --> U/lasy/b/n on input line 52.
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/t2\mathtext.sty
Package: mathtext 2018/04/13 v1.1 transparent text-and-math defs
LaTeX Info: Redefining \halign on input line 119.
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/amscls\amsthm.sty
Package: amsthm 2020/05/29 v2.20.6
\thm@style=\toks34
\thm@bodyfont=\toks35
\thm@headfont=\toks36
\thm@notefont=\toks37
\thm@headpunct=\toks38
\thm@preskip=\skip64
\thm@postskip=\skip65
\thm@headsep=\skip66
\dth@everypar=\toks39
)
\c@theorem=\count305
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/caption\caption.sty
Package: caption 2022/03/01 v3.6b Customizing captions (AR)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/caption\caption3.sty
Package: caption3 2022/03/17 v2.3b caption3 kernel (AR)
\caption@tempdima=\dimen178
\captionmargin=\dimen179
\caption@leftmargin=\dimen180
\caption@rightmargin=\dimen181
\caption@width=\dimen182
\caption@indent=\dimen183
\caption@parindent=\dimen184
\caption@hangindent=\dimen185
Package caption Info: Standard document class detected.
)
\c@caption@flags=\count306
\c@continuedfloat=\count307
Package caption Info: float package is loaded.
Package caption Info: hyperref package is loaded.
Package caption Info: longtable package is loaded.
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/caption\ltcaption.sty
Package: ltcaption 2021/01/08 v1.4c longtable captions (AR)
))
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/fancyhdr\fancyhdr.sty
Package: fancyhdr 2022/05/18 v4.0.3 Extensive control of page headers and foote
rs
\f@nch@headwidth=\skip67
\f@nch@O@elh=\skip68
\f@nch@O@erh=\skip69
\f@nch@O@olh=\skip70
\f@nch@O@orh=\skip71
\f@nch@O@elf=\skip72
\f@nch@O@erf=\skip73
\f@nch@O@olf=\skip74
\f@nch@O@orf=\skip75
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/titlesec\titlesec.sty
Package: titlesec 2021/07/05 v2.14 Sectioning titles
\ttl@box=\box65
\beforetitleunit=\skip76
\aftertitleunit=\skip77
\ttl@plus=\dimen186
\ttl@minus=\dimen187
\ttl@toksa=\toks40
\titlewidth=\dimen188
\titlewidthlast=\dimen189
\titlewidthfirst=\dimen190
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/enumitem\enumitem.sty
Package: enumitem 2019/06/20 v3.9 Customized lists
\labelindent=\skip78
\enit@outerparindent=\dimen191
\enit@toks=\toks41
\enit@inbox=\box66
\enit@count@id=\count308
\enitdp@description=\count309
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/tocloft\tocloft.sty
Package: tocloft 2017/08/31 v2.3i parameterised ToC, etc., typesetting
Package tocloft Info: The document has chapter divisions on input line 51.
\cftparskip=\skip79
\cftbeforetoctitleskip=\skip80
\cftaftertoctitleskip=\skip81
\cftbeforepartskip=\skip82
\cftpartnumwidth=\skip83
\cftpartindent=\skip84
\cftbeforechapskip=\skip85
\cftchapindent=\skip86
\cftchapnumwidth=\skip87
\cftbeforesecskip=\skip88
\cftsecindent=\skip89
\cftsecnumwidth=\skip90
\cftbeforesubsecskip=\skip91
\cftsubsecindent=\skip92
\cftsubsecnumwidth=\skip93
\cftbeforesubsubsecskip=\skip94
\cftsubsubsecindent=\skip95
\cftsubsubsecnumwidth=\skip96
\cftbeforeparaskip=\skip97
\cftparaindent=\skip98
\cftparanumwidth=\skip99
\cftbeforesubparaskip=\skip100
\cftsubparaindent=\skip101
\cftsubparanumwidth=\skip102
\cftbeforeloftitleskip=\skip103
\cftafterloftitleskip=\skip104
\cftbeforefigskip=\skip105
\cftfigindent=\skip106
\cftfignumwidth=\skip107
\c@lofdepth=\count310
\c@lotdepth=\count311
\cftbeforelottitleskip=\skip108
\cftafterlottitleskip=\skip109
\cftbeforetabskip=\skip110
\cfttabindent=\skip111
\cfttabnumwidth=\skip112
))
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/ragged2e\ragged2e.sty
Package: ragged2e 2021/12/15 v3.1 ragged2e Package
\CenteringLeftskip=\skip113
\RaggedLeftLeftskip=\skip114
\RaggedRightLeftskip=\skip115
\CenteringRightskip=\skip116
\RaggedLeftRightskip=\skip117
\RaggedRightRightskip=\skip118
\CenteringParfillskip=\skip119
\RaggedLeftParfillskip=\skip120
\RaggedRightParfillskip=\skip121
\JustifyingParfillskip=\skip122
\CenteringParindent=\skip123
\RaggedLeftParindent=\skip124
\RaggedRightParindent=\skip125
\JustifyingParindent=\skip126
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/l3backend\l3backend-pdft
ex.def
File: l3backend-pdftex.def 2022-09-28 L3 backend support: PDF output (pdfTeX)
\l__color_backend_stack_int=\count312
\l__pdf_internal_box=\box67
) (PR8.aux)
\openout1 = `PR8.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 14.
LaTeX Font Info: ... okay on input line 14.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 14.
LaTeX Font Info: ... okay on input line 14.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 14.
LaTeX Font Info: ... okay on input line 14.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 14.
LaTeX Font Info: ... okay on input line 14.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 14.
LaTeX Font Info: ... okay on input line 14.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 14.
LaTeX Font Info: ... okay on input line 14.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 14.
LaTeX Font Info: ... okay on input line 14.
LaTeX Font Info: Checking defaults for T2A/cmr/m/n on input line 14.
LaTeX Font Info: ... okay on input line 14.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 14.
LaTeX Font Info: ... okay on input line 14.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 14.
LaTeX Font Info: ... okay on input line 14.
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: a4paper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes: includehead includefoot
* h-part:(L,W,R)=(71.13188pt, 483.69687pt, 42.67912pt)
* v-part:(T,H,B)=(56.9055pt, 731.23584pt, 56.9055pt)
* \paperwidth=597.50787pt
* \paperheight=845.04684pt
* \textwidth=483.69687pt
* \textheight=701.23584pt
* \oddsidemargin=-1.1381pt
* \evensidemargin=-1.1381pt
* \topmargin=-15.36449pt
* \headheight=0.0pt
* \headsep=0.0pt
* \topskip=14.0pt
* \footskip=30.0pt
* \marginparwidth=24.0pt
* \marginparsep=10.0pt
* \columnsep=10.0pt
* \skip\footins=12.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 Info: Redefining \th on input line 14.
Package hyperref Info: Link coloring OFF on input line 14.
(PR8.out) (PR8.out)
\@outlinefile=\write4
\openout4 = `PR8.out'.
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/context/base/mkii\supp-pdf.mki
i
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count313
\scratchdimen=\dimen192
\scratchbox=\box68
\nofMPsegments=\count314
\nofMParguments=\count315
\everyMPshowfont=\toks42
\MPscratchCnt=\count316
\MPscratchDim=\dimen193
\MPnumerator=\count317
\makeMPintoPDFobject=\count318
\everyMPtoPDFconversion=\toks43
)
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/epstopdf-pkg\epstopdf-ba
se.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.
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/00miktex\epstopdf-sys.cf
g
File: epstopdf-sys.cfg 2021/03/18 v2.0 Configuration of epstopdf for MiKTeX
))
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: End \AtBeginDocument code.
pdfTeX warning: pdflatex (file ./titulCourse.pdf): PDF inclusion: found PDF ver
sion <1.7>, but at most version <1.5> allowed
<titulCourse.pdf, id=134, 597.55246pt x 845.07718pt>
File: titulCourse.pdf Graphic file (type pdf)
<use titulCourse.pdf>
Package pdftex.def Info: titulCourse.pdf used on input line 16.
(pdftex.def) Requested size: 597.551pt x 845.07512pt.
pdfTeX warning: pdflatex (file ./titulCourse.pdf): PDF inclusion: found PDF ver
sion <1.7>, but at most version <1.5> allowed
File: titulCourse.pdf Graphic file (type pdf)
<use titulCourse.pdf>
Package pdftex.def Info: titulCourse.pdf used on input line 16.
(pdftex.def) Requested size: 597.551pt x 845.07512pt.
pdfTeX warning: pdflatex (file ./titulCourse.pdf): PDF inclusion: found PDF ver
sion <1.7>, but at most version <1.5> allowed
pdfTeX warning: pdflatex (file ./titulCourse.pdf): PDF inclusion: found PDF ver
sion <1.7>, but at most version <1.5> allowed
<titulCourse.pdf, id=137, page=1, 597.55246pt x 845.07718pt>
File: titulCourse.pdf Graphic file (type pdf)
<use titulCourse.pdf, page 1>
Package pdftex.def Info: titulCourse.pdf , page1 used on input line 16.
(pdftex.def) Requested size: 597.551pt x 845.07512pt.
File: titulCourse.pdf Graphic file (type pdf)
<use titulCourse.pdf, page 1>
Package pdftex.def Info: titulCourse.pdf , page1 used on input line 16.
(pdftex.def) Requested size: 597.57834pt x 845.1138pt.
File: titulCourse.pdf Graphic file (type pdf)
<use titulCourse.pdf, page 1>
Package pdftex.def Info: titulCourse.pdf , page1 used on input line 16.
(pdftex.def) Requested size: 597.57834pt x 845.1138pt.
File: titulCourse.pdf Graphic file (type pdf)
<use titulCourse.pdf, page 1>
Package pdftex.def Info: titulCourse.pdf , page1 used on input line 16.
(pdftex.def) Requested size: 597.57834pt x 845.1138pt.
File: titulCourse.pdf Graphic file (type pdf)
<use titulCourse.pdf, page 1>
Package pdftex.def Info: titulCourse.pdf , page1 used on input line 16.
(pdftex.def) Requested size: 597.57834pt x 845.1138pt.
[1
<./titulCourse.pdf>] (PR8.toc
LaTeX Font Info: Trying to load font information for U+msa on input line 3.
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\umsa.fd
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
)
LaTeX Font Info: Trying to load font information for U+msb on input line 3.
(C:\Users\user\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\umsb.fd
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
)
LaTeX Font Info: Trying to load font information for U+lasy on input line 3.