-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.log
1078 lines (938 loc) · 35.7 KB
/
index.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/W32TeX) (preloaded format=pdflatex 2020.4.2) 14 APR 2020 13:59
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**index.tex
(./index.tex
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-02-25> (c:/Users/Julio/AppData/Roaming/TinyTeX/texmf
-dist/tex/latex/base/article.cls
Document Class: article 2019/12/20 v1.4l Standard LaTeX document class
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/size10.clo
File: size10.clo 2019/12/20 v1.4l Standard LaTeX file (size option)
)
\c@part=\count167
\c@section=\count168
\c@subsection=\count169
\c@subsubsection=\count170
\c@paragraph=\count171
\c@subparagraph=\count172
\c@figure=\count173
\c@table=\count174
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen134
) (c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/lmodern.sty
Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 23.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 27.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/setspace/setspace.
sty
Package: setspace 2011/12/19 v6.7a set line spacing
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/amssymb.s
ty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/amsfonts.
sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\@emptytoks=\toks15
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
))
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsmath.st
y
Package: amsmath 2020/01/20 v2.17e AMS math features
\@mathmargin=\skip49
For additional information on amsmath, use the `?' option.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amstext.st
y
Package: amstext 2000/06/29 v2.01 AMS text
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks16
\ex@=\dimen135
))
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen136
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count175
LaTeX Info: Redefining \frac on input line 227.
\uproot@=\count176
\leftroot@=\count177
LaTeX Info: Redefining \overline on input line 389.
\classnum@=\count178
\DOTSCASE@=\count179
LaTeX Info: Redefining \ldots on input line 486.
LaTeX Info: Redefining \dots on input line 489.
LaTeX Info: Redefining \cdots on input line 610.
\Mathstrutbox@=\box45
\strutbox@=\box46
\big@size=\dimen137
LaTeX Font Info: Redeclaring font encoding OML on input line 733.
LaTeX Font Info: Redeclaring font encoding OMS on input line 734.
\macc@depth=\count180
\c@MaxMatrixCols=\count181
\dotsspace@=\muskip16
\c@parentequation=\count182
\dspbrk@lvl=\count183
\tag@help=\toks17
\row@=\count184
\column@=\count185
\maxfields@=\count186
\andhelp@=\toks18
\eqnshift@=\dimen138
\alignsep@=\dimen139
\tagshift@=\dimen140
\tagwidth@=\dimen141
\totwidth@=\dimen142
\lineht@=\dimen143
\@envbody=\toks19
\multlinegap=\skip50
\multlinetaggap=\skip51
\mathdisplay@stack=\toks20
LaTeX Info: Redefining \[ on input line 2859.
LaTeX Info: Redefining \] on input line 2860.
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/ifxetex.st
y
Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2019/11/07 v1.0c TeX engine tests
))
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/ifluatex.s
ty
Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
) (c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2020/02/11 v2.0o Standard LaTeX package
LaTeX Font Info: Trying to load font information for T1+lmr on input line 11
2.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/t1lmr.fd
File: t1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)) (c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/inputenc.s
ty
Package: inputenc 2018/08/11 v1.3c Input encoding file
\inpenc@prehook=\toks21
\inpenc@posthook=\toks22
) (c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/textcomp.st
y
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/upquote/upquote.st
y
Package: upquote 2012/04/19 v1.3 upright-quote and grave-accent glyphs in verba
tim
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/parskip/parskip.st
y
Package: parskip 2020-01-22 v2.0d non-zero parskip adjustments
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/kvoptions/kvoption
s.sty
Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/keyval.st
y
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks23
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/ltxcmds/ltxcmds.
sty
Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO)
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/kvsetkeys/kvsetk
eys.sty
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
))
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/etoolbox/etoolbox.
sty
Package: etoolbox 2019/09/21 v2.5h e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count187
)) (c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/xcolor/xcolor.s
ty
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
(c:/Users/Julio/AppData/Roaming/TinyTeX/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 225.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-def/pdfte
x.def
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
Package xcolor Info: Model `RGB' extended on input line 1364.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/hyperref.
sty
Package: hyperref 2020/01/14 v7.00d Hypertext links for LaTeX
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/pdftexcmds/pdftexc
mds.sty
Package: pdftexcmds 2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/infwarerr/infwar
err.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/kvdefinekeys/kvd
efinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/pdfescape/pdfesc
ape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hycolor/hycolor.st
y
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/letltxmacro/letltx
macro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/auxhook/auxhook.st
y
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
\@linkdim=\dimen144
\Hy@linkcounter=\count188
\Hy@pagecounter=\count189
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/pd1enc.de
f
File: pd1enc.def 2020/01/14 v7.00d Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/intcalc/intcalc.
sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/etexcmds/etexcmd
s.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count190
\pdfmajorversion=\count191
Package hyperref Info: Option `unicode' set `true' on input line 4421.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2020/01/14 v7.00d 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 4547.
Package hyperref Info: Link nesting OFF on input line 4552.
Package hyperref Info: Hyper index ON on input line 4555.
Package hyperref Info: Plain pages OFF on input line 4562.
Package hyperref Info: Backreferencing OFF on input line 4567.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4800.
\c@Hy@tempcnt=\count192
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip17
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 5159.
\XeTeXLinkMargin=\dimen145
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/bitset/bitset.st
y
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/bigintcalc/bigin
tcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count193
\Field@Width=\dimen146
\Fld@charsize=\dimen147
Package hyperref Info: Hyper figures OFF on input line 6430.
Package hyperref Info: Link nesting OFF on input line 6435.
Package hyperref Info: Hyper index ON on input line 6438.
Package hyperref Info: backreferencing OFF on input line 6445.
Package hyperref Info: Link coloring OFF on input line 6450.
Package hyperref Info: Link coloring with OCG OFF on input line 6455.
Package hyperref Info: PDF/A mode OFF on input line 6460.
LaTeX Info: Redefining \ref on input line 6500.
LaTeX Info: Redefining \pageref on input line 6504.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/atbegshi/atbegsh
i.sty
Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO)
)
\Hy@abspage=\count194
\c@Item=\count195
\c@Hfootnote=\count196
)
Package hyperref Info: Driver (autodetected): hpdftex.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/hpdftex.d
ef
File: hpdftex.def 2020/01/14 v7.00d Hyperref driver for pdfTeX
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/atveryend/atveryen
d.sty
Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO)
)
\Fld@listcount=\count197
\c@bookmark@seq@number=\count198
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/rerunfilecheck/rer
unfilecheck.sty
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/uniquecounter/un
iquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
86.
)
\Hy@SectionHShift=\skip52
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/geometry/geometry.
sty
Package: geometry 2020/01/02 v5.9 Page Geometry
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
)
\Gm@cnth=\count199
\Gm@cntv=\count266
\c@Gm@tempcnt=\count267
\Gm@bindingoffset=\dimen148
\Gm@wd@mp=\dimen149
\Gm@odd@mp=\dimen150
\Gm@even@mp=\dimen151
\Gm@layoutwidth=\dimen152
\Gm@layoutheight=\dimen153
\Gm@layouthoffset=\dimen154
\Gm@layoutvoffset=\dimen155
\Gm@dimlist=\toks24
) (c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/psnfss/times.sty
Package: times 2005/04/12 PSNFSS-v9.2a (SPQR)
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/koma-script/scrext
end.sty
Package: scrextend 2020/01/24 v3.29 KOMA-Script package (extend other classes w
ith features of KOMA-Script classes)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/koma-script/scrkba
se.sty
Package: scrkbase 2020/01/24 v3.29 KOMA-Script package (KOMA-Script-dependent b
asics and keyval usage)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/koma-script/scrbas
e.sty
Package: scrbase 2020/01/24 v3.29 KOMA-Script package (KOMA-Script-independent
basics and keyval usage)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/koma-script/scrlfi
le.sty
Package: scrlfile 2020/01/24 v3.29 KOMA-Script package (loading files)
)))
LaTeX Warning: Command \@footnotemark has changed.
Check if current package is valid.
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/caption.st
y
Package: caption 2020/01/03 v3.4h Customizing captions (AR)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/caption3.s
ty
Package: caption3 2020/01/03 v1.8h caption3 kernel (AR)
Package caption3 Info: TeX engine: e-TeX on input line 61.
\captionmargin=\dimen156
\captionmargin@=\dimen157
\captionwidth=\dimen158
\caption@tempdima=\dimen159
\caption@indent=\dimen160
\caption@parindent=\dimen161
\caption@hangindent=\dimen162
Package caption Info: Standard document class detected.
)
\c@caption@flags=\count268
\c@continuedfloat=\count269
Package caption Info: hyperref package is loaded.
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/graphicx.
sty
Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/graphics.
sty
Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-cfg/graph
ics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 105.
)
\Gin@req@height=\dimen163
\Gin@req@width=\dimen164
) (c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count270
\float@exts=\toks25
\float@box=\box47
\@float@everytoks=\toks26
\@floatcapt=\box48
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/booktabs/booktabs.
sty
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen165
\lightrulewidth=\dimen166
\cmidrulewidth=\dimen167
\belowrulesep=\dimen168
\belowbottomsep=\dimen169
\aboverulesep=\dimen170
\abovetopsep=\dimen171
\cmidrulesep=\dimen172
\cmidrulekern=\dimen173
\defaultaddspace=\dimen174
\@cmidla=\count271
\@cmidlb=\count272
\@aboverulesep=\dimen175
\@belowrulesep=\dimen176
\@thisruleclass=\count273
\@lastruleclass=\count274
\@thisrulewidth=\dimen177
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/longtable.st
y
Package: longtable 2020/01/07 v4.13 Multi-page Table package (DPC)
\LTleft=\skip53
\LTright=\skip54
\LTpre=\skip55
\LTpost=\skip56
\LTchunksize=\count275
\LTcapwidth=\dimen178
\LT@head=\box49
\LT@firsthead=\box50
\LT@foot=\box51
\LT@lastfoot=\box52
\LT@cols=\count276
\LT@rows=\count277
\c@LT@tables=\count278
\c@LT@chunks=\count279
\LT@p@ftn=\toks27
) (c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/array.sty
Package: array 2019/08/31 v2.4l Tabular extension package (FMi)
\col@sep=\dimen179
\ar@mcellbox=\box53
\extrarowheight=\dimen180
\NC@list=\toks28
\extratabsurround=\skip57
\backup@length=\skip58
\ar@cellbox=\box54
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/multirow/multirow.
sty
Package: multirow 2019/05/31 v2.5 Span multiple rows of a table
\multirow@colwidth=\skip59
\multirow@cntb=\count280
\multirow@dima=\skip60
\bigstrutjot=\dimen181
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/wrapfig/wrapfig.st
y
\wrapoverhang=\dimen182
\WF@size=\dimen183
\c@WF@wrappedlines=\count281
\WF@box=\box55
\WF@everypar=\toks29
Package: wrapfig 2003/01/31 v 3.6
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/colortbl/colortbl.
sty
Package: colortbl 2020/01/04 v1.0e Color table columns (DPC)
\everycr=\toks30
\minrowclearance=\skip61
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/pdflscape/pdflscap
e.sty
Package: pdflscape 2019/12/05 v0.12 Display of landscape pages in PDF (HO)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/lscape.st
y
Package: lscape 2000/10/22 v3.01 Landscape Pages (DPC)
)
Package pdflscape Info: Auto-detected driver: pdftex on input line 81.
) (c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tabu/tabu.sty
Package: tabu 2019/01/11 v2.9 - flexible LaTeX tabulars (FC+tabu-fixed)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/varwidth/varwidth.
sty
Package: varwidth 2009/03/30 ver 0.92; Variable-width minipages
\@vwid@box=\box56
\sift@deathcycles=\count282
\@vwid@loff=\dimen184
\@vwid@roff=\dimen185
)
\c@taburow=\count283
\tabu@nbcols=\count284
\tabu@cnt=\count285
\tabu@Xcol=\count286
\tabu@alloc=\count287
\tabu@nested=\count288
\tabu@target=\dimen186
\tabu@spreadtarget=\dimen187
\tabu@naturalX=\dimen188
\tabucolX=\dimen189
\tabu@Xsum=\dimen190
\extrarowdepth=\dimen191
\abovetabulinesep=\dimen192
\belowtabulinesep=\dimen193
\tabustrutrule=\dimen194
\tabu@thebody=\toks31
\tabu@footnotes=\toks32
\tabu@box=\box57
\tabu@arstrutbox=\box58
\tabu@hleads=\box59
\tabu@vleads=\box60
\tabu@cellskip=\skip62
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/threeparttable/thr
eeparttable.sty
Package: threeparttable 2003/06/13 v 3.0
\@tempboxb=\box61
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/l3backend/l3backen
d-pdfmode.def
File: l3backend-pdfmode.def 2020-02-23 L3 backend support: PDF mode
\l__kernel_color_stack_int=\count289
\l__pdf_internal_box=\box62
) (./index.aux)
\openout1 = `index.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Trying to load font information for T1+ptm on input line 72
.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/psnfss/t1ptm.fd
File: t1ptm.fd 2001/06/04 font definitions for T1/ptm.
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/epstopdf-pkg/epsto
pdf-base.sty
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
85.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/latexconfig/epstop
df-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
\AtBeginShipoutBox=\box63
Package hyperref Info: Link coloring OFF on input line 72.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/nameref.s
ty
Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/refcount/refcount.
sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/gettitlestring/g
ettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
)
\c@section@level=\count290
)
LaTeX Info: Redefining \ref on input line 72.
LaTeX Info: Redefining \pageref on input line 72.
LaTeX Info: Redefining \nameref on input line 72.
(./index.out) (./index.out)
\@outlinefile=\write3
\openout3 = `index.out'.
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: legalpaper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes: landscape
* h-part:(L,W,R)=(14.22636pt, 983.32727pt, 14.22636pt)
* v-part:(T,H,B)=(14.22636pt, 585.84227pt, 14.22636pt)
* \paperwidth=1011.78pt
* \paperheight=614.295pt
* \textwidth=983.32727pt
* \textheight=585.84227pt
* \oddsidemargin=-58.04362pt
* \evensidemargin=-58.04362pt
* \topmargin=-95.04362pt
* \headheight=12.0pt
* \headsep=25.0pt
* \topskip=10.0pt
* \footskip=30.0pt
* \marginparwidth=144.0pt
* \marginparsep=11.0pt
* \columnsep=10.0pt
* \skip\footins=6.29997pt plus 2.79968pt minus 1.40028pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidefalse
* \@mparswitchfalse
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: float package is loaded.
Package caption Info: longtable package is loaded.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/ltcaption.
sty
Package: ltcaption 2018/08/26 v1.4a longtable captions (AR)
)
Package caption Info: threeparttable package is loaded.
Package caption Info: wrapfig package is loaded.
Package caption Info: End \AtBeginDocument code.
LaTeX Font Info: Calculating math sizes for size <8.39998> on input line 74.
LaTeX Font Info: Trying to load font information for OT1+lmr on input line 7
4.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/ot1lmr.fd
File: ot1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OML+lmm on input line 7
4.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/omllmm.fd
File: omllmm.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OMS+lmsy on input line
74.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/omslmsy.fd
File: omslmsy.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OMX+lmex on input line
74.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/omxlmex.fd
File: omxlmex.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <8.39998> on input line 74.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <5.87996> on input line 74.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <4.19998> on input line 74.
LaTeX Font Info: Trying to load font information for U+msa on input line 74.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/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 74.
(c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
) (./index.toc
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <7> on input line 2.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <5> on input line 2.
)
\tf@toc=\write4
\openout4 = `index.toc'.
[1
{c:/Users/Julio/AppData/Roaming/TinyTeX/texmf-var/fonts/map/pdftex/updmap/pdfte
x.map}]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 109--109
[]|\T1/ptm/m/n/8 com08_3|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 111--111
[]|\T1/ptm/m/n/8 com08_4|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 113--113
[]|\T1/ptm/m/n/8 com08_5|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 115--115
[]|\T1/ptm/m/n/8 com09_3|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 117--117
[]|\T1/ptm/m/n/8 com09_4|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 119--119
[]|\T1/ptm/m/n/8 com09_5|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 121--121
[]|\T1/ptm/m/n/8 com10_1|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 123--123
[]|\T1/ptm/m/n/8 com10_2|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 125--125
[]|\T1/ptm/m/n/8 com10_3|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 127--127
[]|\T1/ptm/m/n/8 com10_8|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 129--129
[]|\T1/ptm/m/n/8 com12_9|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 131--131
[]|\T1/ptm/m/n/8 com13_1|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 133--133
[]|\T1/ptm/m/n/8 com13_2|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 135--135
[]|\T1/ptm/m/n/8 com13_3|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 137--137
[]|\T1/ptm/m/n/8 com13_4|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 139--139
[]|\T1/ptm/m/n/8 com13_5|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 141--141
[]|\T1/ptm/m/n/8 com13_7|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 143--143
[]|\T1/ptm/m/n/8 com13_8|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 145--145
[]|\T1/ptm/m/n/8 com13_9|
[]
Overfull \hbox (5.32314pt too wide) in paragraph at lines 147--147
[]|\T1/ptm/m/n/8 com13_11|
[]
Overfull \hbox (5.32314pt too wide) in paragraph at lines 149--149
[]|\T1/ptm/m/n/8 com13_12|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 151--151
[]|\T1/ptm/m/n/8 com14_1|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 153--153
[]|\T1/ptm/m/n/8 com14_3|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 155--155
[]|\T1/ptm/m/n/8 com15_3|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 157--157
[]|\T1/ptm/m/n/8 com15_4|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 159--159
[]|\T1/ptm/m/n/8 com16_1|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 161--161
[]|\T1/ptm/m/n/8 com16_2|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 163--163
[]|\T1/ptm/m/n/8 com16_3|
[]
Overfull \hbox (1.32314pt too wide) in paragraph at lines 165--165
[]|\T1/ptm/m/n/8 com16_4|
[]
pdfTeX warning (ext4): destination with the same identifier (name{page.}) has b
een already used, duplicate ignored
<to be read again>
\relax
l.166 \end{longtable}
[2]pdfTeX warning (ext4): destination with the same ident
ifier (name{page.}) has been already used, duplicate ignored
<to be read again>
\relax
l.170
[3]pdfTeX warning (ext4): destination with the same identifier (name{pag
e.}) has been already used, duplicate ignored
<to be read again>
\relax
l.208
[4]
Overfull \hbox (1.76309pt too wide) in paragraph at lines 271--271
[]|\T1/ptm/m/n/8 sce04_10|
[]
Overfull \hbox (1.76309pt too wide) in paragraph at lines 273--273
[]|\T1/ptm/m/n/8 sce04_11|
[]
Overfull \hbox (1.76309pt too wide) in paragraph at lines 275--275
[]|\T1/ptm/m/n/8 sce04_12|
[]
Overfull \hbox (1.76309pt too wide) in paragraph at lines 277--277
[]|\T1/ptm/m/n/8 sce04_13|
[]
Overfull \hbox (1.76309pt too wide) in paragraph at lines 279--279
[]|\T1/ptm/m/n/8 sce04_14|
[]
Overfull \hbox (1.76309pt too wide) in paragraph at lines 281--281
[]|\T1/ptm/m/n/8 sce04_15|
[]
Overfull \hbox (1.76309pt too wide) in paragraph at lines 283--283
[]|\T1/ptm/m/n/8 sce04_16|
[]
Overfull \hbox (1.76309pt too wide) in paragraph at lines 303--303
[]|\T1/ptm/m/n/8 sce05_10|
[]
Overfull \hbox (1.76309pt too wide) in paragraph at lines 305--305
[]|\T1/ptm/m/n/8 sce05_11|
[]
Overfull \hbox (1.76309pt too wide) in paragraph at lines 325--325
[]|\T1/ptm/m/n/8 sce06_10|
[]
Overfull \hbox (1.76309pt too wide) in paragraph at lines 327--327
[]|\T1/ptm/m/n/8 sce06_11|
[]
pdfTeX warning (ext4): destination with the same identifier (name{page.}) has b
een already used, duplicate ignored
<to be read again>
\relax
l.348
[5]
Overfull \hbox (1.76309pt too wide) in paragraph at lines 351--351
[]|\T1/ptm/m/n/8 sce09_10|
[]
Overfull \hbox (1.76309pt too wide) in paragraph at lines 353--353
[]|\T1/ptm/m/n/8 sce09_11|
[]
pdfTeX warning (ext4): destination with the same identifier (name{page.}) has b
een already used, duplicate ignored
<to be read again>
\relax
l.354 \end{longtable}
[6]pdfTeX warning (ext4): destination with the same ident
ifier (name{page.}) has been already used, duplicate ignored
<to be read again>
\relax
l.358
[7]
Overfull \hbox (3.54726pt too wide) in paragraph at lines 406--406
[]|\T1/ptm/m/n/8 kno07_11|
[]
Overfull \hbox (3.54726pt too wide) in paragraph at lines 408--408
[]|\T1/ptm/m/n/8 kno07_12|
[]
Overfull \hbox (3.54726pt too wide) in paragraph at lines 410--410
[]|\T1/ptm/m/n/8 kno07_13|
[]
Overfull \hbox (3.54726pt too wide) in paragraph at lines 413--413
[]|\T1/ptm/m/n/8 kno07_14|
[]
Overfull \hbox (3.54726pt too wide) in paragraph at lines 416--416
[]|\T1/ptm/m/n/8 kno07_15|
[]
Overfull \hbox (3.54726pt too wide) in paragraph at lines 419--419
[]|\T1/ptm/m/n/8 kno07_16|
[]
pdfTeX warning (ext4): destination with the same identifier (name{page.}) has b
een already used, duplicate ignored
<to be read again>
\relax
l.424
[8]pdfTeX warning (ext4): destination with the same identifier (name{pag
e.}) has been already used, duplicate ignored