main.log
59 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
This is XeTeX, Version 3.141592653-2.6-0.999993 (TeX Live 2021) (preloaded format=xelatex 2021.5.21) 28 DEC 2021 18:53
entering extended mode
restricted \write18 enabled.
file:line:error style messages enabled.
%&-line parsing enabled.
**/home/fc/projects/contrib/teseue/main
(/home/fc/projects/contrib/teseue/main.tex
LaTeX2e <2020-10-01> patch level 4
L3 programming layer <2021-05-11> (./teseue.cls
Document Class: teseue 2020/12/18 --- Estilo para dissertacoes da Universidade de Evora, versao 2.5.2 --- Com o contributo de fc, jsaias, vbn, ipr, tcg, dmendes e quase todos @di.uevora.pt --- Codigo Livre
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/book.cls
Document Class: book 2020/04/10 v1.4m Standard LaTeX document class
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/bk11.clo
File: bk11.clo 2020/04/10 v1.4m Standard LaTeX file (size option)
)
\c@part=\count175
\c@chapter=\count176
\c@section=\count177
\c@subsection=\count178
\c@subsubsection=\count179
\c@paragraph=\count180
\c@subparagraph=\count181
\c@figure=\count182
\c@table=\count183
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen138
) (/usr/local/texlive/2021/texmf-dist/tex/latex/emptypage/emptypage.sty
Package: emptypage 2010/05/30 v1.2 Suppress page numbers and headings on empty pages
) (/usr/local/texlive/2021/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2020/01/02 v5.9 Page Geometry
(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks15
) (/usr/local/texlive/2021/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
(/usr/local/texlive/2021/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2020/03/06 v1.0d TeX engine tests
))
\Gm@cnth=\count184
\Gm@cntv=\count185
\c@Gm@tempcnt=\count186
\Gm@bindingoffset=\dimen139
\Gm@wd@mp=\dimen140
\Gm@odd@mp=\dimen141
\Gm@even@mp=\dimen142
\Gm@layoutwidth=\dimen143
\Gm@layoutheight=\dimen144
\Gm@layouthoffset=\dimen145
\Gm@layoutvoffset=\dimen146
\Gm@dimlist=\toks16
) (/usr/local/texlive/2021/texmf-dist/tex/latex/setspace/setspace.sty
Package: setspace 2011/12/19 v6.7a set line spacing
) (/usr/local/texlive/2021/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count187
) (/usr/local/texlive/2021/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2020/09/09 v1.2b Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2020/08/30 v1.4c Standard LaTeX Graphics (DPC,SPQR)
(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: xetex.def on input line 105.
(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics-def/xetex.def
File: xetex.def 2021/03/18 v5.0k Graphics/color driver for xetex
))
\Gin@req@height=\dimen147
\Gin@req@width=\dimen148
) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
\pgfutil@everybye=\toks17
\pgfutil@tempdima=\dimen149
\pgfutil@tempdimb=\dimen150
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex)) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
\pgfutil@abb=\box47
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/pgf.revision.tex)
Package: pgfrcs 2021/05/15 v3.1.9a (3.1.9a)
))
Package: pgf 2021/05/15 v3.1.9a (3.1.9a)
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
Package: pgfsys 2021/05/15 v3.1.9a (3.1.9a)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
\pgfkeys@pathtoks=\toks18
\pgfkeys@temptoks=\toks19
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex
\pgfkeys@tmptoks=\toks20
))
\pgf@x=\dimen151
\pgf@y=\dimen152
\pgf@xa=\dimen153
\pgf@ya=\dimen154
\pgf@xb=\dimen155
\pgf@yb=\dimen156
\pgf@xc=\dimen157
\pgf@yc=\dimen158
\pgf@xd=\dimen159
\pgf@yd=\dimen160
\w@pgf@writea=\write3
\r@pgf@reada=\read2
\c@pgf@counta=\count188
\c@pgf@countb=\count189
\c@pgf@countc=\count190
\c@pgf@countd=\count191
\t@pgf@toka=\toks21
\t@pgf@tokb=\toks22
\t@pgf@tokc=\toks23
\pgf@sys@id@count=\count192
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
File: pgf.cfg 2021/05/15 v3.1.9a (3.1.9a)
)
Driver file for pgf: pgfsys-xetex.def
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-xetex.def
File: pgfsys-xetex.def 2021/05/15 v3.1.9a (3.1.9a)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-dvipdfmx.def
File: pgfsys-dvipdfmx.def 2021/05/15 v3.1.9a (3.1.9a)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
File: pgfsys-common-pdf.def 2021/05/15 v3.1.9a (3.1.9a)
)
\pgfsys@objnum=\count193
))) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
File: pgfsyssoftpath.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgfsyssoftpath@smallbuffer@items=\count194
\pgfsyssoftpath@bigbuffer@items=\count195
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
File: pgfsysprotocol.code.tex 2021/05/15 v3.1.9a (3.1.9a)
)) (/usr/local/texlive/2021/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics-cfg/color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: xetex.def on input line 225.
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
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.
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
Package: pgfcore 2021/05/15 v3.1.9a (3.1.9a)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
\pgfmath@dimen=\dimen161
\pgfmath@count=\count196
\pgfmath@box=\box48
\pgfmath@toks=\toks24
\pgfmath@stack@operand=\toks25
\pgfmath@stack@operation=\toks26
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex))) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
\c@pgfmathroundto@lastzeros=\count197
)) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
File: pgfcorepoints.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgf@picminx=\dimen162
\pgf@picmaxx=\dimen163
\pgf@picminy=\dimen164
\pgf@picmaxy=\dimen165
\pgf@pathminx=\dimen166
\pgf@pathmaxx=\dimen167
\pgf@pathminy=\dimen168
\pgf@pathmaxy=\dimen169
\pgf@xx=\dimen170
\pgf@xy=\dimen171
\pgf@yx=\dimen172
\pgf@yy=\dimen173
\pgf@zx=\dimen174
\pgf@zy=\dimen175
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
File: pgfcorepathconstruct.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgf@path@lastx=\dimen176
\pgf@path@lasty=\dimen177
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
File: pgfcorepathusage.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgf@shorten@end@additional=\dimen178
\pgf@shorten@start@additional=\dimen179
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
File: pgfcorescopes.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgfpic=\box49
\pgf@hbox=\box50
\pgf@layerbox@main=\box51
\pgf@picture@serial@count=\count198
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
File: pgfcoregraphicstate.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgflinewidth=\dimen180
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex
File: pgfcoretransformations.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgf@pt@x=\dimen181
\pgf@pt@y=\dimen182
\pgf@pt@temp=\dimen183
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
File: pgfcorequick.code.tex 2021/05/15 v3.1.9a (3.1.9a)
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
File: pgfcoreobjects.code.tex 2021/05/15 v3.1.9a (3.1.9a)
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex
File: pgfcorepathprocessing.code.tex 2021/05/15 v3.1.9a (3.1.9a)
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
File: pgfcorearrows.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgfarrowsep=\dimen184
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
File: pgfcoreshade.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgf@max=\dimen185
\pgf@sys@shading@range@num=\count199
\pgf@shadingcount=\count266
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
File: pgfcoreimage.code.tex 2021/05/15 v3.1.9a (3.1.9a)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
File: pgfcoreexternal.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgfexternal@startupbox=\box52
)) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
File: pgfcorelayers.code.tex 2021/05/15 v3.1.9a (3.1.9a)
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
File: pgfcoretransparency.code.tex 2021/05/15 v3.1.9a (3.1.9a)
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
File: pgfcorepatterns.code.tex 2021/05/15 v3.1.9a (3.1.9a)
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
File: pgfcorerdf.code.tex 2021/05/15 v3.1.9a (3.1.9a)
))) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
File: pgfmoduleshapes.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgfnodeparttextbox=\box53
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
File: pgfmoduleplot.code.tex 2021/05/15 v3.1.9a (3.1.9a)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
Package: pgfcomp-version-0-65 2021/05/15 v3.1.9a (3.1.9a)
\pgf@nodesepstart=\dimen186
\pgf@nodesepend=\dimen187
) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
Package: pgfcomp-version-1-18 2021/05/15 v3.1.9a (3.1.9a)
)) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgffor.sty (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/math/pgfmath.sty (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
Package: pgffor 2021/05/15 v3.1.9a (3.1.9a)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)
\pgffor@iter=\dimen188
\pgffor@skip=\dimen189
\pgffor@stack=\toks27
\pgffor@toks=\toks28
)) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
Package: tikz 2021/05/15 v3.1.9a (3.1.9a)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex
File: pgflibraryplothandlers.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgf@plot@mark@count=\count267
\pgfplotmarksize=\dimen190
)
\tikz@lastx=\dimen191
\tikz@lasty=\dimen192
\tikz@lastxsaved=\dimen193
\tikz@lastysaved=\dimen194
\tikz@lastmovetox=\dimen195
\tikz@lastmovetoy=\dimen196
\tikzleveldistance=\dimen197
\tikzsiblingdistance=\dimen198
\tikz@figbox=\box54
\tikz@figbox@bg=\box55
\tikz@tempbox=\box56
\tikz@tempbox@bg=\box57
\tikztreelevel=\count268
\tikznumberofchildren=\count269
\tikznumberofcurrentchild=\count270
\tikz@fig@count=\count271
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
File: pgfmodulematrix.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgfmatrixcurrentrow=\count272
\pgfmatrixcurrentcolumn=\count273
\pgf@matrix@numberofcolumns=\count274
)
\tikz@expandcount=\count275
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex
File: tikzlibrarytopaths.code.tex 2021/05/15 v3.1.9a (3.1.9a)
))) (/usr/local/texlive/2021/texmf-dist/tex/latex/acronym/acronym.sty
Package: acronym 2020/04/17 v1.47 Support for acronyms (Tobias Oetiker)
(/usr/local/texlive/2021/texmf-dist/tex/latex/bigfoot/suffix.sty
Package: suffix 2006/07/15 1.5a Variant command support
) (/usr/local/texlive/2021/texmf-dist/tex/generic/xstring/xstring.sty (/usr/local/texlive/2021/texmf-dist/tex/generic/xstring/xstring.tex
\integerpart=\count276
Invalid UTF-8 byte or sequence at line 35 replaced by U+FFFD.
\decimalpart=\count277
Invalid UTF-8 byte or sequence at line 79 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 79 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 83 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 86 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 102 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 114 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 120 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 125 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 147 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 147 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 147 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 182 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 182 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 182 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 183 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 184 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 185 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 185 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 185 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 189 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 189 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 190 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 190 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 193 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 221 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 221 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 241 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 241 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 241 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 241 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 266 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 284 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 295 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 300 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 300 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 301 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 301 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 301 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 302 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 303 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 332 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 332 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 332 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 332 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 333 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 334 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 334 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 334 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 406 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 406 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 409 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 410 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 428 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 434 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 457 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 457 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 464 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 464 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 466 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 466 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 541 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 541 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 541 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 586 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 586 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 588 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 588 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 595 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 597 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 599 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 602 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 605 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 605 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 610 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 615 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 632 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 632 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 633 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 635 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 637 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 647 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 653 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 678 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 700 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 705 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 715 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 715 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 715 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 719 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 732 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 732 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 741 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 741 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 742 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 742 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 762 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 773 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 773 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 774 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 774 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 774 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 797 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 797 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 810 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 824 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 824 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 831 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 838 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 838 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 846 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 846 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 861 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 862 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 864 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 864 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 908 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 909 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 909 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 934 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 934 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 936 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 936 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 940 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 940 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 962 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 962 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 964 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 965 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 1006 replaced by U+FFFD.
)
Package: xstring 2019/02/06 v1.83 String manipulations (CT)
)
\AC@clearlist=\toks29
) (/usr/local/texlive/2021/texmf-dist/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.
) (/usr/local/texlive/2021/texmf-dist/tex/latex/base/makeidx.sty
Package: makeidx 2014/09/29 v1.0m Standard LaTeX package
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tools/array.sty
Package: array 2020/10/01 v2.5c Tabular extension package (FMi)
\col@sep=\dimen199
\ar@mcellbox=\box58
\extrarowheight=\dimen256
\NC@list=\toks30
\extratabsurround=\skip49
\backup@length=\skip50
\ar@cellbox=\box59
) (/usr/local/texlive/2021/texmf-dist/tex/latex/polyglossia/polyglossia.sty
Package: polyglossia 2021/04/12 v1.53 Modern multilingual typesetting with XeLaTeX and LuaLaTeX
(/usr/local/texlive/2021/texmf-dist/tex/latex/makecmds/makecmds.sty
Package: makecmds 2009/09/03 v1.0a extra command making commands
) (/usr/local/texlive/2021/texmf-dist/tex/latex/xkeyval/xkeyval.sty
Package: xkeyval 2020/11/20 v2.8 package option processing (HA)
(/usr/local/texlive/2021/texmf-dist/tex/generic/xkeyval/xkeyval.tex (/usr/local/texlive/2021/texmf-dist/tex/generic/xkeyval/xkvutils.tex
\XKV@toks=\toks31
\XKV@tempa@toks=\toks32
)
\XKV@depth=\count278
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
)) (/usr/local/texlive/2021/texmf-dist/tex/latex/fontspec/fontspec.sty (/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse.sty (/usr/local/texlive/2021/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2021-05-11 L3 programming layer (loader)
(/usr/local/texlive/2021/texmf-dist/tex/latex/l3backend/l3backend-xetex.def
File: l3backend-xetex.def 2021-05-07 L3 backend support: XeTeX
(|extractbb --version)
\c__kernel_sys_dvipdfmx_version_int=\count279
\l__color_backend_stack_int=\count280
\g__color_backend_stack_int=\count281
\g__graphics_track_int=\count282
\l__pdf_internal_box=\box60
\g__pdf_backend_object_int=\count283
\g__pdf_backend_annotation_int=\count284
\g__pdf_backend_link_int=\count285
)) (/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse-2020-10-01.sty (/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse-generic.tex)))
Package: fontspec 2020/02/21 v2.7i Font selection for XeLaTeX and LuaLaTeX
(/usr/local/texlive/2021/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty
Package: fontspec-xetex 2020/02/21 v2.7i Font selection for XeLaTeX and LuaLaTeX
\l__fontspec_script_int=\count286
\l__fontspec_language_int=\count287
\l__fontspec_strnum_int=\count288
\l__fontspec_tmp_int=\count289
\l__fontspec_tmpa_int=\count290
\l__fontspec_tmpb_int=\count291
\l__fontspec_tmpc_int=\count292
\l__fontspec_em_int=\count293
\l__fontspec_emdef_int=\count294
\l__fontspec_strong_int=\count295
\l__fontspec_strongdef_int=\count296
\l__fontspec_tmpa_dim=\dimen257
\l__fontspec_tmpb_dim=\dimen258
\l__fontspec_tmpc_dim=\dimen259
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2020/08/10 v2.0s Standard LaTeX package
) (/usr/local/texlive/2021/texmf-dist/tex/latex/fontspec/fontspec.cfg))) (/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
Package: l3keys2e 2021-05-07 LaTeX2e option processing using LaTeX3 keys
)
\xpg@normalclass=\XeTeXcharclass1
(/usr/local/texlive/2021/texmf-dist/tex/latex/polyglossia/gloss-latex.ldf
File: gloss-latex.ldf polyglossia: module for default language
The property list \polyglossia@langsetup contains the pairs (without outer
braces):
> {latex/script} => {latin}
> {latex/lcscript} => {latin}
> {latex/scripttag} => {}
> {latex/language} => {Latex}
> {latex/langtag} => {ENG}
> {latex/bcp47} => {}
> {latex/hyphennames} => {english}
> {latex/direction} => {LR}
> {latex/hyphenmins} => {2,3}
> {latex/frenchspacing} => {false}
> {latex/indentfirst} => {false}
> {latex/fontsetup} => {true}
> {latex/envname} => {latex}
> {latex/babelname} => {latex}
> {latex/localnumeral} => {polyglossia@C@localnumeral}
> {latex/Localnumeral} => {polyglossia@C@localnumeral}.
)
Package polyglossia Info: Default language is latex.
)
Package fontspec Info: Font family 'SourceSansPro-Light.otf(0)' created for
(fontspec) font 'SourceSansPro-Light.otf' with options
(fontspec) [Ligatures=TeX,UprightFont =
(fontspec) SourceSansPro-Light,ItalicFont =
(fontspec) SourceSansPro-LightIt,BoldFont =
(fontspec) SourceSansPro-Regular].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <->"[SourceSansPro-Light.otf]/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) - 'bold' (b/n) with NFSS spec.:
(fontspec) <->"[SourceSansPro-Regular.otf]/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
(fontspec) - 'italic' (m/it) with NFSS spec.:
(fontspec) <->"[SourceSansPro-LightIt.otf]/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
Package fontspec Info: Font family 'SourceSansPro-ExtraLight.otf(0)' created
(fontspec) for font 'SourceSansPro-ExtraLight.otf' with options
(fontspec) [UprightFont = SourceSansPro-ExtraLight,ItalicFont =
(fontspec) SourceSansPro-ExtraLightIt,BoldFont =
(fontspec) SourceSansPro-Light].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <->"[SourceSansPro-ExtraLight.otf]/OT:script=latn;language=dflt;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) - 'bold' (b/n) with NFSS spec.:
(fontspec) <->"[SourceSansPro-Light.otf]/OT:script=latn;language=dflt;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
(fontspec) - 'italic' (m/it) with NFSS spec.:
(fontspec) <->"[SourceSansPro-ExtraLightIt.otf]/OT:script=latn;language=dflt;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
)
***
*** TeseUE
*** ------ LINGUA(PT)
(/usr/local/texlive/2021/texmf-dist/tex/latex/polyglossia/gloss-portuges.ldf
File: gloss-portuges.ldf polyglossia: module for portuguese
(/usr/local/texlive/2021/texmf-dist/tex/latex/polyglossia/gloss-portuguese.ldf
File: gloss-portuguese.ldf polyglossia: module for portuguese
The property list \polyglossia@langsetup contains the pairs (without outer
braces):
> {latex/script} => {latin}
> {latex/lcscript} => {latin}
> {latex/scripttag} => {}
> {latex/language} => {Latex}
> {latex/langtag} => {ENG}
> {latex/bcp47} => {}
> {latex/hyphennames} => {english}
> {latex/direction} => {LR}
> {latex/hyphenmins} => {2,3}
> {latex/frenchspacing} => {false}
> {latex/indentfirst} => {false}
> {latex/fontsetup} => {true}
> {latex/envname} => {latex}
> {latex/babelname} => {latex}
> {latex/localnumeral} => {polyglossia@C@localnumeral}
> {latex/Localnumeral} => {polyglossia@C@localnumeral}
> {portuguese/script} => {latin}
> {portuguese/lcscript} => {latin}
> {portuguese/scripttag} => {}
> {portuguese/language} => {Portuguese}
> {portuguese/langtag} => {PTG}
> {portuguese/bcp47} => {pt-PT}
> {portuguese/hyphennames} => {portuges,portuguese}
> {portuguese/direction} => {LR}
> {portuguese/hyphenmins} => {2,3}
> {portuguese/frenchspacing} => {false}
> {portuguese/indentfirst} => {false}
> {portuguese/fontsetup} => {true}
> {portuguese/envname} => {portuguese}
> {portuguese/babelname} => {portuges}
> {portuguese/localnumeral} => {polyglossia@C@localnumeral}
> {portuguese/Localnumeral} => {polyglossia@C@localnumeral}.
Package polyglossia Info: Option: portuguese, variant=portuguese.
)) (/usr/local/texlive/2021/texmf-dist/tex/latex/polyglossia/gloss-portuguese.ldf
File: gloss-portuguese.ldf polyglossia: module for portuguese
The property list \polyglossia@langsetup contains the pairs (without outer
braces):
> {latex/script} => {latin}
> {latex/lcscript} => {latin}
> {latex/scripttag} => {}
> {latex/language} => {Latex}
> {latex/langtag} => {ENG}
> {latex/bcp47} => {}
> {latex/hyphennames} => {english}
> {latex/direction} => {LR}
> {latex/hyphenmins} => {2,3}
> {latex/frenchspacing} => {false}
> {latex/indentfirst} => {false}
> {latex/fontsetup} => {true}
> {latex/envname} => {latex}
> {latex/babelname} => {latex}
> {latex/localnumeral} => {polyglossia@C@localnumeral}
> {latex/Localnumeral} => {polyglossia@C@localnumeral}
> {portuguese/script} => {latin}
> {portuguese/lcscript} => {latin}
> {portuguese/scripttag} => {}
> {portuguese/language} => {Portuguese}
> {portuguese/langtag} => {PTG}
> {portuguese/bcp47} => {pt-PT}
> {portuguese/hyphennames} => {portuges,portuguese}
> {portuguese/direction} => {LR}
> {portuguese/hyphenmins} => {2,3}
> {portuguese/frenchspacing} => {false}
> {portuguese/indentfirst} => {false}
> {portuguese/fontsetup} => {true}
> {portuguese/envname} => {portuguese}
> {portuguese/babelname} => {portuges}
> {portuguese/localnumeral} => {polyglossia@C@localnumeral}
> {portuguese/Localnumeral} => {polyglossia@C@localnumeral}.
Package polyglossia Info: Option: portuguese, variant=portuguese.
)
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Default language is portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
(/usr/local/texlive/2021/texmf-dist/tex/latex/polyglossia/gloss-english.ldf
File: gloss-english.ldf polyglossia: module for english
The property list \polyglossia@langsetup contains the pairs (without outer
braces):
> {latex/script} => {latin}
> {latex/lcscript} => {latin}
> {latex/scripttag} => {}
> {latex/language} => {Latex}
> {latex/langtag} => {ENG}
> {latex/bcp47} => {}
> {latex/hyphennames} => {english}
> {latex/direction} => {LR}
> {latex/hyphenmins} => {2,3}
> {latex/frenchspacing} => {false}
> {latex/indentfirst} => {false}
> {latex/fontsetup} => {true}
> {latex/envname} => {latex}
> {latex/babelname} => {latex}
> {latex/localnumeral} => {polyglossia@C@localnumeral}
> {latex/Localnumeral} => {polyglossia@C@localnumeral}
> {portuguese/script} => {latin}
> {portuguese/lcscript} => {latin}
> {portuguese/scripttag} => {}
> {portuguese/language} => {Portuguese}
> {portuguese/langtag} => {PTG}
> {portuguese/bcp47} => {pt-PT}
> {portuguese/hyphennames} => {portuges,portuguese}
> {portuguese/direction} => {LR}
> {portuguese/hyphenmins} => {2,3}
> {portuguese/frenchspacing} => {false}
> {portuguese/indentfirst} => {false}
> {portuguese/fontsetup} => {true}
> {portuguese/envname} => {portuguese}
> {portuguese/babelname} => {portuges}
> {portuguese/localnumeral} => {polyglossia@C@localnumeral}
> {portuguese/Localnumeral} => {polyglossia@C@localnumeral}
> {english/script} => {latin}
> {english/lcscript} => {latin}
> {english/scripttag} => {}
> {english/language} => {English}
> {english/langtag} => {ENG}
> {english/bcp47} => {en-US}
> {english/hyphennames} => {english,american,usenglish,USenglish}
> {english/direction} => {LR}
> {english/hyphenmins} => {2,3}
> {english/frenchspacing} => {false}
> {english/indentfirst} => {false}
> {english/fontsetup} => {true}
> {english/envname} => {english}
> {english/babelname} => {english}
> {english/localnumeral} => {polyglossia@C@localnumeral}
> {english/Localnumeral} => {polyglossia@C@localnumeral}.
Package polyglossia Info: Option: English, variant=american.
)
*** ------ LSTACRON(Lista de Acr\'{o}nimos)
*** ------ SUMARIO(Sum\'{a}rio)
*** ------ ABSTRACT(Abstract)
*** ------ PAL.CHAV(Palavras chave)
*** ------ KEYWORDS(Keywords)
\@indexfile=\write4
\openout4 = `main.idx'.
Writing index file main.idx
(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics/rotating.sty
Package: rotating 2016/08/11 v2.16d rotated objects in LaTeX
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
\c@r@tfl@t=\count297
\rotFPtop=\skip51
\rotFPbot=\skip52
\rot@float@box=\box61
\rot@mess@toks=\toks33
) (./main.aux
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 3.
LaTeX Info: Redefining \sffamily on input line 3.
LaTeX Info: Redefining \ttfamily on input line 3.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 11.
LaTeX Info: Redefining \sffamily on input line 11.
LaTeX Info: Redefining \ttfamily on input line 11.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 19.
LaTeX Info: Redefining \sffamily on input line 19.
LaTeX Info: Redefining \ttfamily on input line 19.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 27.
LaTeX Info: Redefining \sffamily on input line 27.
LaTeX Info: Redefining \ttfamily on input line 27.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 35.
LaTeX Info: Redefining \sffamily on input line 35.
LaTeX Info: Redefining \ttfamily on input line 35.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
(./prefacio.aux) (./agradecimentos.aux) (./acronimos.aux) (./sumario.aux) (./abstract.aux) (./demo-cap-1.aux) (./demo-cap-2.aux) (./demo-cap-3.aux) (./demo-apend-1.aux) (./demo-apend-2.aux))
\openout1 = `main.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 255.
LaTeX Font Info: ... okay on input line 255.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 255.
LaTeX Font Info: ... okay on input line 255.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 255.
LaTeX Font Info: ... okay on input line 255.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 255.
LaTeX Font Info: ... okay on input line 255.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 255.
LaTeX Font Info: Trying to load font information for TS1+cmr on input line 255.
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/ts1cmr.fd
File: ts1cmr.fd 2019/12/16 v2.5j Standard LaTeX font definitions
)
LaTeX Font Info: ... okay on input line 255.
LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 255.
LaTeX Font Info: ... okay on input line 255.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 255.
LaTeX Font Info: ... okay on input line 255.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 255.
LaTeX Font Info: ... okay on input line 255.
*geometry* driver: auto-detecting
*geometry* detected driver: xetex
*geometry* verbose mode - [ preamble ] result:
* driver: xetex
* paper: <default>
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes: twoside
* h-part:(L,W,R)=(56.9055pt, 483.69687pt, 56.9055pt)
* v-part:(T,H,B)=(85.35826pt, 674.33032pt, 85.35826pt)
* \paperwidth=597.50787pt
* \paperheight=845.04684pt
* \textwidth=483.69687pt
* \textheight=674.33032pt
* \oddsidemargin=-15.36449pt
* \evensidemargin=-15.36449pt
* \topmargin=-18.78552pt
* \headheight=12.0pt
* \headsep=19.8738pt
* \topskip=11.0pt
* \footskip=27.46295pt
* \marginparwidth=106.0pt
* \marginparsep=7.0pt
* \columnsep=10.0pt
* \skip\footins=10.0pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidetrue
* \@mparswitchtrue
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid
(fontspec) this).
\symlegacymaths=\mathgroup4
LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold'
(Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 255.
LaTeX Font Info: Redeclaring math accent \acute on input line 255.
LaTeX Font Info: Redeclaring math accent \grave on input line 255.
LaTeX Font Info: Redeclaring math accent \ddot on input line 255.
LaTeX Font Info: Redeclaring math accent \tilde on input line 255.
LaTeX Font Info: Redeclaring math accent \bar on input line 255.
LaTeX Font Info: Redeclaring math accent \breve on input line 255.
LaTeX Font Info: Redeclaring math accent \check on input line 255.
LaTeX Font Info: Redeclaring math accent \hat on input line 255.
LaTeX Font Info: Redeclaring math accent \dot on input line 255.
LaTeX Font Info: Redeclaring math accent \mathring on input line 255.
LaTeX Font Info: Redeclaring math symbol \colon on input line 255.
LaTeX Font Info: Redeclaring math symbol \Gamma on input line 255.
LaTeX Font Info: Redeclaring math symbol \Delta on input line 255.
LaTeX Font Info: Redeclaring math symbol \Theta on input line 255.
LaTeX Font Info: Redeclaring math symbol \Lambda on input line 255.
LaTeX Font Info: Redeclaring math symbol \Xi on input line 255.
LaTeX Font Info: Redeclaring math symbol \Pi on input line 255.
LaTeX Font Info: Redeclaring math symbol \Sigma on input line 255.
LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 255.
LaTeX Font Info: Redeclaring math symbol \Phi on input line 255.
LaTeX Font Info: Redeclaring math symbol \Psi on input line 255.
LaTeX Font Info: Redeclaring math symbol \Omega on input line 255.
LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 255.
LaTeX Font Info: Redeclaring symbol font `operators' on input line 255.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `normal' on input line 255.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> TU/SourceSansPro-Light.otf(0)/m/n on input line 255.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `bold' on input line 255.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> TU/SourceSansPro-Light.otf(0)/m/n on input line 255.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) TU/SourceSansPro-Light.otf(0)/m/n --> TU/SourceSansPro-Light.otf(0)/m/n on input line 255.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> TU/SourceSansPro-Light.otf(0)/m/it on input line 255.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> TU/SourceSansPro-Light.otf(0)/b/n on input line 255.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 255.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 255.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) TU/SourceSansPro-Light.otf(0)/m/n --> TU/SourceSansPro-Light.otf(0)/b/n on input line 255.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> TU/SourceSansPro-Light.otf(0)/b/it on input line 255.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> TU/lmss/b/n on input line 255.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> TU/lmtt/b/n on input line 255.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 255.
LaTeX Info: Redefining \sffamily on input line 255.
LaTeX Info: Redefining \ttfamily on input line 255.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 255.
LaTeX Info: Redefining \sffamily on input line 255.
LaTeX Info: Redefining \ttfamily on input line 255.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
File: teseue-logo.pdf Graphic file (type pdf)
<use teseue-logo.pdf>
LaTeX Font Info: Font shape `TU/lmss/m/it' in size <14.4> not available
(Font) Font shape `TU/lmss/m/sl' tried instead on input line 255.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <10.95> on input line 255.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <8> on input line 255.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <6> on input line 255.
LaTeX Font Info: Font shape `TU/lmss/m/it' in size <10.95> not available
(Font) Font shape `TU/lmss/m/sl' tried instead on input line 255.
File: rascunhocet.jpg Graphic file (type bmp)
<rascunhocet.jpg>
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 255.
LaTeX Info: Redefining \sffamily on input line 255.
LaTeX Info: Redefining \ttfamily on input line 255.
Package polyglossia Info: Option: portuguese, variant=portuguese.
[1
] [2]
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 255.
LaTeX Info: Redefining \sffamily on input line 255.
LaTeX Info: Redefining \ttfamily on input line 255.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
File: teseue-pomba.pdf Graphic file (type pdf)
<use teseue-pomba.pdf>
Overfull \hbox (12.76909pt too wide) in paragraph at lines 255--255
[][]
[]
Underfull \hbox (badness 10000) in paragraph at lines 255--255
[]
Underfull \hbox (badness 10000) in paragraph at lines 255--255
[]
Underfull \hbox (badness 10000) in paragraph at lines 255--255
[]
Underfull \hbox (badness 10000) in paragraph at lines 255--255
[]
Underfull \hbox (badness 10000) in paragraph at lines 255--255
[]
Underfull \hbox (badness 10000) in paragraph at lines 255--255
[]
LaTeX Font Info: Font shape `TU/lmss/m/it' in size <9> not available
(Font) Font shape `TU/lmss/m/sl' tried instead on input line 255.
Underfull \hbox (badness 10000) in paragraph at lines 255--255
[]
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 255.
LaTeX Info: Redefining \sffamily on input line 255.
LaTeX Info: Redefining \ttfamily on input line 255.
Package polyglossia Info: Option: portuguese, variant=portuguese.
[3
] [4] [5
] [6
]
*** PREAMBULO
\openout2 = `prefacio.aux'.
(./prefacio.tex) [7
]
\openout2 = `agradecimentos.aux'.
(./agradecimentos.tex [8
]) [9
]
*** TABELAS
[10
] (./main.toc
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 1.
LaTeX Info: Redefining \sffamily on input line 1.
LaTeX Info: Redefining \ttfamily on input line 1.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 3.
LaTeX Info: Redefining \sffamily on input line 3.
LaTeX Info: Redefining \ttfamily on input line 3.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 5.
LaTeX Info: Redefining \sffamily on input line 5.
LaTeX Info: Redefining \ttfamily on input line 5.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 7.
LaTeX Info: Redefining \sffamily on input line 7.
LaTeX Info: Redefining \ttfamily on input line 7.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 9.
LaTeX Info: Redefining \sffamily on input line 9.
LaTeX Info: Redefining \ttfamily on input line 9.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
)
\tf@toc=\write5
\openout5 = `main.toc'.
[11
] [12
] (./main.lof
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 1.
LaTeX Info: Redefining \sffamily on input line 1.
LaTeX Info: Redefining \ttfamily on input line 1.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 3.
LaTeX Info: Redefining \sffamily on input line 3.
LaTeX Info: Redefining \ttfamily on input line 3.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 5.
LaTeX Info: Redefining \sffamily on input line 5.
LaTeX Info: Redefining \ttfamily on input line 5.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 7.
LaTeX Info: Redefining \sffamily on input line 7.
LaTeX Info: Redefining \ttfamily on input line 7.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 9.
LaTeX Info: Redefining \sffamily on input line 9.
LaTeX Info: Redefining \ttfamily on input line 9.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
)
\tf@lof=\write6
\openout6 = `main.lof'.
[13
] [14
] (./main.lot
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 1.
LaTeX Info: Redefining \sffamily on input line 1.
LaTeX Info: Redefining \ttfamily on input line 1.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 3.
LaTeX Info: Redefining \sffamily on input line 3.
LaTeX Info: Redefining \ttfamily on input line 3.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 5.
LaTeX Info: Redefining \sffamily on input line 5.
LaTeX Info: Redefining \ttfamily on input line 5.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 7.
LaTeX Info: Redefining \sffamily on input line 7.
LaTeX Info: Redefining \ttfamily on input line 7.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 9.
LaTeX Info: Redefining \sffamily on input line 9.
LaTeX Info: Redefining \ttfamily on input line 9.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
)
\tf@lot=\write7
\openout7 = `main.lot'.
[15
] [16
]
\openout2 = `acronimos.aux'.
(./acronimos.tex [17
]) [18]
\openout2 = `sumario.aux'.
(./sumario.tex
***
*** tueSUMARIO
*** ------ SUMARIO(Sum\'{a}rio)
*** ------ PAL.CHAV(Palavras chave)
) [19
]
\openout2 = `abstract.aux'.
(./abstract.tex [20
] [21
]) [22]
\openout2 = `demo-cap-1.aux'.
(./demo-cap-1.tex
Capítulo 1.
[1
]
Underfull \vbox (badness 10000) has occurred while \output is active []
[2]) [3]
\openout2 = `demo-cap-2.aux'.
(./demo-cap-2.tex [4
]
Capítulo 2.
LaTeX Warning: Citation `barber2012bayesian' on page 5 undefined on input line 4.
[5
]) [6]
\openout2 = `demo-cap-3.aux'.
(./demo-cap-3.tex
Capítulo 3.
[7
]) [8]
\openout2 = `demo-apend-1.aux'.
(./demo-apend-1.tex
Apêndice A.
[9
]) [10]
\openout2 = `demo-apend-2.aux'.
(./demo-apend-2.tex
Apêndice B.
[11
]) [12]
No file main.bbl.
No file main.ind.
File: teseue-logo-iifa.pdf Graphic file (type pdf)
<use teseue-logo-iifa.pdf>
The property list \polyglossia@langsetup contains the pairs (without outer
braces):
> {latex/script} => {latin}
> {latex/lcscript} => {latin}
> {latex/scripttag} => {}
> {latex/language} => {Latex}
> {latex/langtag} => {ENG}
> {latex/bcp47} => {}
> {latex/hyphennames} => {english}
> {latex/direction} => {LR}
> {latex/hyphenmins} => {2,3}
> {latex/frenchspacing} => {false}
> {latex/indentfirst} => {false}
> {latex/fontsetup} => {true}
> {latex/envname} => {latex}
> {latex/babelname} => {latex}
> {latex/localnumeral} => {polyglossia@C@localnumeral}
> {latex/Localnumeral} => {polyglossia@C@localnumeral}
> {portuguese/script} => {latin}
> {portuguese/lcscript} => {latin}
> {portuguese/scripttag} => {}
> {portuguese/language} => {Portuguese}
> {portuguese/langtag} => {PTG}
> {portuguese/bcp47} => {pt-PT}
> {portuguese/hyphennames} => {portuges,portuguese}
> {portuguese/direction} => {LR}
> {portuguese/hyphenmins} => {2,3}
> {portuguese/frenchspacing} => {false}
> {portuguese/indentfirst} => {false}
> {portuguese/fontsetup} => {true}
> {portuguese/envname} => {portuguese}
> {portuguese/babelname} => {portuges}
> {portuguese/localnumeral} => {polyglossia@C@localnumeral}
> {portuguese/Localnumeral} => {polyglossia@C@localnumeral}
> {english/script} => {latin}
> {english/lcscript} => {latin}
> {english/scripttag} => {}
> {english/language} => {English}
> {english/langtag} => {ENG}
> {english/bcp47} => {en-US}
> {english/hyphennames} => {english,american,usenglish,USenglish}
> {english/direction} => {LR}
> {english/hyphenmins} => {2,3}
> {english/frenchspacing} => {false}
> {english/indentfirst} => {false}
> {english/fontsetup} => {true}
> {english/envname} => {english}
> {english/babelname} => {american}
> {english/localnumeral} => {polyglossia@C@localnumeral}
> {english/Localnumeral} => {polyglossia@C@localnumeral}.
[13
] (./main.aux
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 3.
LaTeX Info: Redefining \sffamily on input line 3.
LaTeX Info: Redefining \ttfamily on input line 3.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 11.
LaTeX Info: Redefining \sffamily on input line 11.
LaTeX Info: Redefining \ttfamily on input line 11.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 19.
LaTeX Info: Redefining \sffamily on input line 19.
LaTeX Info: Redefining \ttfamily on input line 19.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 27.
LaTeX Info: Redefining \sffamily on input line 27.
LaTeX Info: Redefining \ttfamily on input line 27.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
LaTeX Info: Redefining \rmfamily on input line 35.
LaTeX Info: Redefining \sffamily on input line 35.
LaTeX Info: Redefining \ttfamily on input line 35.
Package polyglossia Info: Option: portuguese, variant=portuguese.
Package polyglossia Info: Option: portuguese, variant=portuguese.
(./prefacio.aux) (./agradecimentos.aux) (./acronimos.aux) (./sumario.aux) (./abstract.aux) (./demo-cap-1.aux) (./demo-cap-2.aux) (./demo-cap-3.aux) (./demo-apend-1.aux) (./demo-apend-2.aux))
LaTeX Warning: There were undefined references.
)
Here is how much of TeX's memory you used:
16921 strings out of 478707
379075 string characters out of 5862233
739463 words of memory out of 5000000
36541 multiletter control sequences out of 15000+600000
406425 words of font info for 68 fonts, out of 8000000 for 9000
38 hyphenation exceptions out of 8191
102i,14n,109p,890b,770s stack positions out of 5000i,500n,10000p,200000b,80000s
Output written on main.pdf (35 pages).