-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.log
4051 lines (2982 loc) · 129 KB
/
main.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is LuaHBTeX, Version 1.14.0 (TeX Live 2022/dev/Debian) (format=lualatex 2022.8.23) 21 NOV 2022 13:05
restricted system commands enabled.
**main.tex
(./main.tex
LaTeX2e <2021-11-15> patch level 1
Lua module: luaotfload 2021-05-21 3.18 Lua based OpenType font support
Lua module: lualibs 2021-05-20 2.74 ConTeXt Lua standard libraries.
Lua module: lualibs-extended 2021-05-20 2.74 ConTeXt Lua libraries -- extended c
ollection.
luaotfload | conf : Root cache directory is "/home/deva/.texlive2021/texmf-var/l
uatex-cache/generic/names".
luaotfload | init : Loading fontloader "fontloader-2021-05-20.lua" from kpse-res
olved path "/usr/share/texlive/texmf-dist/tex/luatex/luaotfload/fontloader-2021-
05-20.lua".
Lua-only attribute luaotfload@noligature = 1
Lua-only attribute luaotfload@syllabe = 2
luaotfload | init : Context OpenType loader version 3.116
Inserting `luaotfload.node_processor' at position 1 in `pre_linebreak_filter'.
Inserting `luaotfload.node_processor' at position 1 in `hpack_filter'.
Inserting `luaotfload.glyph_stream' at position 1 in `glyph_stream_provider'.
Inserting `luaotfload.define_font' at position 1 in `define_font'.
Lua-only attribute luaotfload_color_attribute = 3
luaotfload | conf : Root cache directory is "/home/deva/.texlive2021/texmf-var/l
uatex-cache/generic/names".
Inserting `luaotfload.harf.strip_prefix' at position 1 in `find_opentype_file'.
Inserting `luaotfload.harf.strip_prefix' at position 1 in `find_truetype_file'.
Inserting `luaotfload.harf.finalize_vlist' at position 1 in `post_linebreak_filt
er'.
Inserting `luaotfload.harf.finalize_hlist' at position 2 in `hpack_filter'.
Inserting `luaotfload.cleanup_files' at position 1 in `wrapup_run'.
Inserting `luaotfload.harf.finalize_unicode' at position 1 in `finish_pdffile'.
Inserting `luaotfload.glyphinfo' at position 1 in `glyph_info'.
Lua-only attribute luaotfload.letterspace_done = 4
Inserting `luaotfload.aux.set_sscale_dimens' at position 1 in `luaotfload.patch_
font'.
Inserting `luaotfload.aux.set_font_index' at position 2 in `luaotfload.patch_fon
t'.
Inserting `luaotfload.aux.patch_cambria_domh' at position 3 in `luaotfload.patch
_font'.
Inserting `luaotfload.aux.fixup_fontdata' at position 1 in `luaotfload.patch_fon
t_unsafe'.
Inserting `luaotfload.aux.set_capheight' at position 4 in `luaotfload.patch_font
'.
Inserting `luaotfload.aux.set_xheight' at position 5 in `luaotfload.patch_font'.
Inserting `luaotfload.rewrite_fontname' at position 6 in `luaotfload.patch_font'
. L3 programming layer <2022-01-21>
Inserting `tracingstacklevels' at position 1 in `input_level_string'. (./anecdo
te.cls
Document Class: anecdote 2017/08/19 v0.11 A memoir-based documentclass with a c
ontemporary style for books.
(/usr/share/texlive/texmf-dist/tex/latex/pgfopts/pgfopts.sty
Package: pgfopts 2014/07/10 v2.1a LaTeX package options with pgfkeys
(/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
\pgfkeys@pathtoks=\toks16
\pgfkeys@temptoks=\toks17
(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.t
ex
\pgfkeys@tmptoks=\toks18
)))
\pgfopts@list@add@a@toks=\toks19
\pgfopts@list@add@b@toks=\toks20
) (/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count183
\calc@Bcount=\count184
\calc@Adimen=\dimen137
\calc@Bdimen=\dimen138
\calc@Askip=\skip47
\calc@Bskip=\skip48
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count185
\calc@Cskip=\skip49
)
(/usr/share/texlive/texmf-dist/tex/latex/memoir/memoir.cls
Document Class: memoir 2021/06/16 v3.7p configurable book, report, article docu
ment class
\onelineskip=\skip50
\lxvchars=\skip51
\xlvchars=\skip52
\@memcnta=\count186
\c@@memmarkcntra=\count187
(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2020/03/06 v1.0d TeX engine tests
)
\stockheight=\skip53
\stockwidth=\skip54
\trimtop=\skip55
\trimedge=\skip56
(/usr/share/texlive/texmf-dist/tex/latex/memoir/mem11.clo
File: mem11.clo 2008/01/30 v0.3 memoir class 11pt size option
luaotfload | db : Font names database loaded from /home/deva/.texlive2021/texmf-
var/luatex-cache/generic/names/luaotfload-names.luc)
\binding=\skip57
\spinemargin=\skip58
\foremargin=\skip59
\uppermargin=\skip60
\lowermargin=\skip61
\headdrop=\skip62
\normalrulethickness=\skip63
\mem@maxheadheight=\skip64
\mem@maxfootheight=\skip65
\headwidth=\skip66
\c@storedpagenumber=\count188
\memPD=\dimen139
\m@mabparskip=\skip67
\thanksmarkwidth=\skip68
\thanksmarksep=\skip69
\droptitle=\skip70
\c@book=\count189
\c@part=\count190
\c@chapter=\count191
\c@section=\count192
\c@subsection=\count193
\c@subsubsection=\count194
\c@paragraph=\count195
\c@subparagraph=\count196
\beforechapskip=\skip71
\midchapskip=\skip72
\afterchapskip=\skip73
\chapindent=\skip74
\bottomsectionskip=\skip75
\secindent=\skip76
\beforesecskip=\skip77
\aftersecskip=\skip78
\subsecindent=\skip79
\beforesubsecskip=\skip80
\aftersubsecskip=\skip81
\subsubsecindent=\skip82
\beforesubsubsecskip=\skip83
\aftersubsubsecskip=\skip84
\paraindent=\skip85
\beforeparaskip=\skip86
\afterparaskip=\skip87
\subparaindent=\skip88
\beforesubparaskip=\skip89
\aftersubparaskip=\skip90
\pfbreakskip=\skip91
\c@@ppsavesec=\count197
\c@@ppsaveapp=\count198
\ragrparindent=\dimen140
\everylistparindent=\dimen141
\parsepi=\skip92
\topsepi=\skip93
\itemsepi=\skip94
\parsepii=\skip95
\topsepii=\skip96
\topsepiii=\skip97
\itemsepii=\skip98
\itemsepiii=\skip99
\partopsepii=\skip100
\partopsepiii=\skip101
\m@msavetopsep=\skip102
\m@msavepartopsep=\skip103
\@enLab=\toks21
\abstitleskip=\skip104
\absleftindent=\skip105
\abs@leftindent=\dimen142
\absrightindent=\skip106
\absparindent=\skip107
\absparsep=\skip108
\c@vslineno=\count199
\c@poemline=\count266
\c@modulo@vs=\count267
\c@memfvsline=\count268
\vleftskip=\skip109
\vrightskip=\skip110
\stanzaskip=\skip111
\versewidth=\skip112
\vgap=\skip113
\vindent=\skip114
\vleftmargin=\dimen143
\c@verse=\count269
\c@chrsinstr=\count270
\beforepoemtitleskip=\skip115
\afterpoemtitleskip=\skip116
\c@poem=\count271
\beforePoemTitleskip=\skip117
\midPoemTitleskip=\skip118
\afterPoemTitleskip=\skip119
(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
Package: array 2021/10/04 v2.5f Tabular extension package (FMi)
\col@sep=\dimen144
\ar@mcellbox=\box50
\extrarowheight=\dimen145
\NC@list=\toks22
\extratabsurround=\skip120
\backup@length=\skip121
\ar@cellbox=\box51
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/dcolumn.sty
Package: dcolumn 2014/10/28 v1.06 decimal alignment package (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/delarray.sty
Package: delarray 2014/10/28 v1.01 array delimiter package (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/tabularx.sty
Package: tabularx 2020/01/15 v2.11c `tabularx' package (DPC)
\TX@col@width=\dimen146
\TX@old@table=\dimen147
\TX@old@col=\dimen148
\TX@target=\dimen149
\TX@delta=\dimen150
\TX@cols=\count272
\TX@ftn=\toks23
)
\heavyrulewidth=\dimen151
\lightrulewidth=\dimen152
\cmidrulewidth=\dimen153
\belowrulesep=\dimen154
\belowbottomsep=\dimen155
\aboverulesep=\dimen156
\abovetopsep=\dimen157
\cmidrulesep=\dimen158
\cmidrulekern=\dimen159
\defaultaddspace=\dimen160
\@cmidla=\count273
\@cmidlb=\count274
\@aboverulesep=\dimen161
\@belowrulesep=\dimen162
\@thisruleclass=\count275
\@lastruleclass=\count276
\@thisrulewidth=\dimen163
\ctableftskip=\skip122
\ctabrightskip=\skip123
\abovecolumnspenalty=\count277
\@linestogo=\count278
\@cellstogo=\count279
\@cellsincolumn=\count280
\crtok=\toks24
\@mincolumnwidth=\dimen164
\c@newflo@tctr=\count281
\mem@margin@floatbox=\box52
\@contcwidth=\skip124
\@contindw=\skip125
\abovecaptionskip=\skip126
\belowcaptionskip=\skip127
\subfloattopskip=\skip128
\subfloatcapskip=\skip129
\subfloatcaptopadj=\skip130
\subfloatbottomskip=\skip131
\subfloatlabelskip=\skip132
\subfloatcapmargin=\dimen165
\c@@contsubnum=\count282
\m@mscap@capbox=\box53
\m@mscap@fbox=\box54
\sidecapsep=\dimen166
\sidecapwidth=\dimen167
\m@m@tempdima=\dimen168
\m@mscapraise=\dimen169
\sidecapraise=\dimen170
\m@mscapmainwidth=\dimen171
\m@mscaplkern=\dimen172
\beforeepigraphskip=\skip133
\afterepigraphskip=\skip134
\epigraphwidth=\skip135
\epigraphrule=\skip136
LaTeX Info: Redefining \em on input line 7654.
LaTeX Info: Redefining \emph on input line 7662.
\tocentryskip=\skip137
\tocbaseline=\skip138
\cftparskip=\skip139
\cftbeforebookskip=\skip140
\cftbookindent=\dimen173
\cftbooknumwidth=\dimen174
\cftbeforepartskip=\skip141
\cftpartindent=\skip142
\cftpartnumwidth=\skip143
\cftbeforechapterskip=\skip144
\cftchapterindent=\skip145
\cftchapternumwidth=\skip146
\cftbeforesectionskip=\skip147
\cftsectionindent=\skip148
\cftsectionnumwidth=\skip149
\cftbeforesubsectionskip=\skip150
\cftsubsectionindent=\skip151
\cftsubsectionnumwidth=\skip152
\cftbeforesubsubsectionskip=\skip153
\cftsubsubsectionindent=\skip154
\cftsubsubsectionnumwidth=\skip155
\cftbeforeparagraphskip=\skip156
\cftparagraphindent=\skip157
\cftparagraphnumwidth=\skip158
\cftbeforesubparagraphskip=\skip159
\cftsubparagraphindent=\skip160
\cftsubparagraphnumwidth=\skip161
\prechapterprecisshift=\dimen175
\c@maxsecnumdepth=\count283
\bibindent=\dimen176
\bibitemsep=\skip162
\indexcolsep=\skip163
\indexrule=\skip164
\indexmarkstyle=\toks25
\@indexbox=\insert252
\glossarycolsep=\dimen177
\glossaryrule=\dimen178
\sideparvshift=\skip165
\sideins=\insert251
\sidebartopsep=\skip166
\sidebarhsep=\skip167
\sidebarvsep=\skip168
\sidebarwidth=\skip169
\footmarkwidth=\skip170
\footmarksep=\skip171
\footparindent=\skip172
\footinsdim=\skip173
\footinsv@r=\insert250
\@mpfootinsv@r=\insert249
\m@m@k=\count284
\m@m@h=\dimen179
\m@mipn@skip=\skip174
\sidefootins=\insert248
\sidefootadjust=\skip175
\sidefootheight=\skip176
\sidefoothsep=\skip177
\sidefootvsep=\skip178
\sidefootwidth=\skip179
\m@mdownsf=\skip180
\c@sidefootnote=\count285
\sidefootmarkwidth=\skip181
\sidefootmarksep=\skip182
\sidefootparindent=\skip183
\c@pagenote=\count286
\c@pagenoteshadow=\count287
\mem@pn@lastkern=\skip184
\every@verbatim=\toks26
\afterevery@verbatim=\toks27
\verbatim@line=\toks28
\tab@position=\count288
\verbatim@in@stream=\read2
\verbatimindent=\skip185
\verbatim@out=\write3
\bvboxsep=\skip186
\c@memfbvline=\count289
\c@bvlinectr=\count290
\bvnumlength=\skip187
\fb@frw=\dimen180
\fb@frh=\dimen181
\FrameRule=\dimen182
\FrameSep=\dimen183
LaTeX hooks Warning: Generic hook 'package/before/framed' is deprecated.
(hooks) Use hook 'package/framed/before' instead.
\c@cp@cntr=\count291
\c@ism@mctr=\count292
\c@xsm@mctr=\count293
\c@csm@mctr=\count294
\c@ksm@mctr=\count295
\c@xksm@mctr=\count296
\c@cksm@mctr=\count297
\c@msm@mctr=\count298
\c@xmsm@mctr=\count299
\c@cmsm@mctr=\count300
\c@bsm@mctr=\count301
\c@workm@mctr=\count302
\c@sheetsequence=\count303
\c@lastsheet=\count304
\c@lastpage=\count305
(/usr/share/texlive/texmf-dist/tex/latex/textcase/textcase.sty
Package: textcase 2019/09/14 v1.00 Text only upper/lower case changing (DPC)
)
\c@figure=\count306
\c@lofdepth=\count307
\cftbeforefigureskip=\skip188
\cftfigureindent=\skip189
\cftfigurenumwidth=\skip190
\c@table=\count308
\c@lotdepth=\count309
\cftbeforetableskip=\skip191
\cfttableindent=\skip192
\cfttablenumwidth=\skip193
Package abstract [2008/07/23] emulated by memoir.
Package appendix [2008/07/23] emulated by memoir.
Package booktabs [2016/05/16] emulated by memoir.
Package ccaption [2008/07/23] emulated by memoir.
Package changepage [2008/07/23] emulated by memoir.
Package chngcntr [2008/07/23] emulated by memoir.
Package chngpage [2008/07/23] emulated by memoir.
Package crop emulated by memoir.
Package enumerate [2008/07/23] emulated by memoir.
Package epigraph [2008/07/23] emulated by memoir.
Package ifmtarg [2008/07/23] emulated by memoir.
Package index [2008/07/23] emulated by memoir.
Package makeidx [2008/07/23] emulated by memoir.
Package moreverb [2008/07/23] emulated by memoir.
Package needspace [2008/07/23] emulated by memoir.
Package newfile [2008/07/23] emulated by memoir.
Package nextpage [2008/07/23] emulated by memoir.
Package pagenote [2008/07/23] emulated by memoir.
Package parskip [2008/07/23] emulated by memoir.
Package patchcmd [2008/07/23] emulated by memoir.
Package setspace [2008/07/23] emulated by memoir.
Package shortvrb [2008/07/23] emulated by memoir.
Package showidx [2008/07/23] emulated by memoir.
Package titleref [2008/07/23] emulated by memoir.
Package titling [2008/07/23] emulated by memoir.
Package tocbibind [2008/07/23] emulated by memoir.
Package tocloft [2008/07/23] emulated by memoir.
Package tocvsec2 [2008/07/23] emulated by memoir.
Package verbatim [2008/07/23] emulated by memoir.
Package verse [2008/07/23] emulated by memoir.
LaTeX hooks Warning: Generic hook 'package/before/float' is deprecated.
(hooks) Use hook 'package/float/before' instead.
) (/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty
Package: babel 2022/01/26 3.70 The Babel package
(/usr/share/texlive/texmf-dist/tex/generic/babel/luababel.def
\bbl@readstream=\read3
\l@dumylang=\language2
Package babel Info: Non-standard hyphenation setup on input line 118.
\l@nohyphenation=\language3
\babelcatcodetablenum=\catcodetable12
\bbl@pattcodes=\catcodetable13
)
\babel@savecnt=\count310
\U@D=\dimen184
\l@unhyphenated=\language4
(/usr/share/texlive/texmf-dist/tex/generic/babel/luababel.def
\bbl@attr@locale=\attribute5
)
(/usr/share/texlive/texmf-dist/tex/generic/babel-english/british.ldf
Language: british 2017/06/06 v3.3r English support from the babel system
(/usr/share/texlive/texmf-dist/tex/generic/babel-english/english.ldf
Language: english 2017/06/06 v3.3r English support from the babel system
Package babel Info: Hyphen rules for 'british' set to \l@english
(babel) (\language0). Reported on input line 82.
Package babel Info: Hyphen rules for 'UKenglish' set to \l@english
(babel) (\language0). Reported on input line 83.
Package babel Info: Hyphen rules for 'canadian' set to \l@english
(babel) (\language0). Reported on input line 102.
Package babel Info: Hyphen rules for 'australian' set to \l@english
(babel) (\language0). Reported on input line 105.
Package babel Info: Hyphen rules for 'newzealand' set to \l@english
(babel) (\language0). Reported on input line 108.
)))
(/usr/share/texlive/texmf-dist/tex/latex/nag/nag.sty
Package: nag 2011/11/25 0.7 warning about old commands (ulmi)
\c@nag@c=\count311
\c@nag@sins=\count312
)
(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2022-01-21 L3 programming layer (loader)
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-luatex.def
File: l3backend-luatex.def 2022-01-12 L3 backend support: PDF output (LuaTeX)
\l__color_backend_stack_int=\count313
\l__pdf_internal_box=\box55
))
Package: xparse 2022-01-12 L3 Experimental document command parser
)
(/usr/share/texlive/texmf-dist/tex/generic/soul/soul.sty
Package: soul 2003/11/17 v2.4 letterspacing/underlining (mf)
\SOUL@word=\toks29
\SOUL@lasttoken=\toks30
\SOUL@cmds=\toks31
\SOUL@buffer=\toks32
\SOUL@token=\toks33
\SOUL@spaceskip=\skip194
\SOUL@ttwidth=\dimen185
\SOUL@uldp=\dimen186
\SOUL@ulht=\dimen187
)
(/usr/share/texlive/texmf-dist/tex/latex/ifsym/ifsym.sty
Package: ifsym 2000/04/18 I.Kloeckl
\c@ifsymcnt=\count314
)
(/usr/share/texlive/texmf-dist/tex/latex/stix/stix.sty
Package: stix 2018/04/17 v1.1.3-latex STIX fonts support package
(/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
LaTeX Font Info: Changing ? sub-encoding to TS1/0 on input line 78.
)
LaTeX Font Info: Redeclaring symbol font `letters' on input line 76.
LaTeX Font Info: Encoding `OML' has changed to `LS1' for symbol font
(Font) `letters' in the math version `normal' on input line 76.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> LS1/stix/m/it on input line 76.
LaTeX Font Info: Encoding `OML' has changed to `LS1' for symbol font
(Font) `letters' in the math version `bold' on input line 76.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> LS1/stix/m/it on input line 76.
LaTeX Font Info: Redeclaring symbol font `operators' on input line 77.
LaTeX Font Info: Encoding `OT1' has changed to `LS1' for symbol font
(Font) `operators' in the math version `normal' on input line 77.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> LS1/stix/m/n on input line 77.
LaTeX Font Info: Encoding `OT1' has changed to `LS1' for symbol font
(Font) `operators' in the math version `bold' on input line 77.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> LS1/stix/m/n on input line 77.
\symbold-operators=\mathgroup4
LaTeX Font Info: Redeclaring symbol font `symbols' on input line 79.
LaTeX Font Info: Encoding `OMS' has changed to `LS1' for symbol font
(Font) `symbols' in the math version `normal' on input line 79.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> LS1/stixscr/m/n on input line 79.
LaTeX Font Info: Encoding `OMS' has changed to `LS1' for symbol font
(Font) `symbols' in the math version `bold' on input line 79.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> LS1/stixscr/m/n on input line 79.
\symsymbols2=\mathgroup5
\symsymbols3=\mathgroup6
\symsymbols4=\mathgroup7
\symintegrals=\mathgroup8
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 84.
LaTeX Font Info: Encoding `OMX' has changed to `LS2' for symbol font
(Font) `largesymbols' in the math version `normal' on input line 8
4.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> LS2/stixex/m/n on input line 84.
LaTeX Font Info: Encoding `OMX' has changed to `LS2' for symbol font
(Font) `largesymbols' in the math version `bold' on input line 84.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> LS2/stixex/m/n on input line 84.
\symarrows1=\mathgroup9
\symarrows2=\mathgroup10
\symarrows3=\mathgroup11
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) LS1/stix/m/it --> LS1/stix/b/it on input line 88.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) LS1/stix/m/n --> LS1/stix/b/n on input line 89.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) LS1/stixscr/m/n --> LS1/stixscr/b/n on input line 90.
LaTeX Font Info: Overwriting symbol font `symbols2' in version `bold'
(Font) LS1/stixfrak/m/n --> LS1/stixfrak/b/n on input line 91.
LaTeX Font Info: Overwriting symbol font `symbols3' in version `bold'
(Font) LS1/stixbb/m/n --> LS1/stixbb/b/n on input line 92.
LaTeX Font Info: Overwriting symbol font `symbols4' in version `bold'
(Font) LS1/stixbb/m/it --> LS1/stixbb/b/it on input line 93.
LaTeX Font Info: Overwriting symbol font `integrals' in version `bold'
(Font) LS2/stixcal/m/n --> LS2/stixcal/b/n on input line 94.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) LS2/stixex/m/n --> LS2/stixex/b/n on input line 95.
LaTeX Font Info: Overwriting symbol font `arrows1' in version `bold'
(Font) LS1/stixsf/m/n --> LS1/stixsf/b/n on input line 96.
LaTeX Font Info: Overwriting symbol font `arrows2' in version `bold'
(Font) LS1/stixsf/m/it --> LS1/stixsf/b/it on input line 97.
LaTeX Font Info: Overwriting symbol font `arrows3' in version `bold'
(Font) LS2/stixtt/m/n --> LS2/stixtt/b/n on input line 98.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 99.
LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 106.
LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 108.
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 109.
LaTeX Font Info: Redeclaring math symbol \hbar on input line 227.
LaTeX Font Info: Redeclaring math accent \grave on input line 698.
LaTeX Font Info: Redeclaring math accent \acute on input line 699.
LaTeX Font Info: Redeclaring math accent \hat on input line 700.
LaTeX Font Info: Redeclaring math accent \tilde on input line 701.
LaTeX Font Info: Redeclaring math accent \bar on input line 702.
LaTeX Font Info: Redeclaring math accent \breve on input line 703.
LaTeX Font Info: Redeclaring math accent \dot on input line 704.
LaTeX Font Info: Redeclaring math accent \ddot on input line 705.
LaTeX Font Info: Redeclaring math accent \mathring on input line 707.
LaTeX Font Info: Redeclaring math accent \check on input line 708.
LaTeX Font Info: Redeclaring math accent \vec on input line 716.
LaTeX Font Info: Redeclaring math accent \widehat on input line 728.
LaTeX Font Info: Redeclaring math accent \widetilde on input line 729.
LaTeX Info: Redefining \vdots on input line 1518.
LaTeX Info: Redefining \cdots on input line 1522.
LaTeX Font Info: Redeclaring math symbol \mathsterling on input line 1978.
LaTeX Info: Redefining \not on input line 2144.
)
(/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2021/10/31 v2.13 LaTeX color extensions (UK)
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: luatex.def on input line 227.
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/luatex.def
File: luatex.def 2021/06/01 v1.2c Graphics/color driver for luatex
)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1352.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1356.
Package xcolor Info: Model `RGB' extended on input line 1368.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1370.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1371.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1372.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1373.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1374.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1375.
)
(/usr/share/texlive/texmf-dist/tex/latex/l3experimental/xcoffins/xcoffins.sty
Package: xcoffins 2021-11-12 L3 Experimental design level coffins
\l__coffin_hoffset_dim=\dimen188
\l__coffin_voffset_dim=\dimen189
\l__coffin_height_dim=\dimen190
\l__coffin_depth_dim=\dimen191
\l__coffin_width_dim=\dimen192
\l__coffin_totalheight_dim=\dimen193
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks34
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: luatex.def on input line 107.
)
\Gin@req@height=\dimen194
\Gin@req@width=\dimen195
)
(/usr/share/texlive/texmf-dist/tex/latex/eso-pic/eso-pic.sty
Package: eso-pic 2020/10/14 v3.0a eso-pic (RN)
\ESO@tempdima=\dimen196
\ESO@tempdimb=\dimen197
)
(/usr/share/texlive/texmf-dist/tex/latex/ccicons/ccicons.sty
Package: ccicons 2017/10/30 v1.6 LaTeX support for Creative Commons icons
(/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty
Package: xkeyval 2020/11/20 v2.8 package option processing (HA)
(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex
(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex
\XKV@toks=\toks35
\XKV@tempa@toks=\toks36
)
\XKV@depth=\count315
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
)))
(/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty
Package: multicol 2021/10/28 v1.9b multicolumn formatting (FMi)
\c@tracingmulticols=\count316
\mult@box=\box56
\multicol@leftmargin=\dimen198
\c@unbalance=\count317
\c@collectmore=\count318
\doublecol@number=\count319
\multicoltolerance=\count320
\multicolpretolerance=\count321
\full@width=\dimen199
\page@free=\dimen256
\premulticols=\dimen257
\postmulticols=\dimen258
\multicolsep=\skip195
\multicolbaselineskip=\skip196
\partial@page=\box57
\last@line=\box58
\maxbalancingoverflow=\dimen259
\mult@rightbox=\box59
\mult@grightbox=\box60
\mult@firstbox=\box61
\mult@gfirstbox=\box62
\@tempa=\box63
\@tempa=\box64
\@tempa=\box65
\@tempa=\box66
\@tempa=\box67
\@tempa=\box68
\@tempa=\box69
\@tempa=\box70
\@tempa=\box71
\@tempa=\box72
\@tempa=\box73
\@tempa=\box74
\@tempa=\box75
\@tempa=\box76
\@tempa=\box77
\@tempa=\box78
\@tempa=\box79
\@tempa=\box80
\@tempa=\box81
\@tempa=\box82
\@tempa=\box83
\@tempa=\box84
\@tempa=\box85
\@tempa=\box86
\@tempa=\box87
\@tempa=\box88
\@tempa=\box89
\@tempa=\box90
\@tempa=\box91
\@tempa=\box92
\@tempa=\box93
\@tempa=\box94
\@tempa=\box95
\@tempa=\box96
\@tempa=\box97
\@tempa=\box98
\c@minrows=\count322
\c@columnbadness=\count323
\c@finalcolumnbadness=\count324
\last@try=\dimen260
\multicolovershoot=\dimen261
\multicolundershoot=\dimen262
\mult@nat@firstbox=\box99
\colbreak@box=\box100
\mc@col@check@num=\count325
)
(/usr/share/texlive/texmf-dist/tex/latex/multirow/multirow.sty
Package: multirow 2021/03/15 v2.8 Span multiple rows of a table
\multirow@colwidth=\skip197
\multirow@cntb=\count326
\multirow@dima=\skip198
\bigstrutjot=\dimen263
)
(/usr/share/texlive/texmf-dist/tex/latex/mdwtools/footnote.sty
Package: footnote 1997/01/28 1.13 Save footnotes around boxes
\fn@notes=\box101
\fn@width=\dimen264
)
(/usr/share/texlive/texmf-dist/tex/latex/hyphenat/hyphenat.sty
Package: hyphenat 2009/09/02 v2.3c hyphenation utilities
\langwohyphens=\language5
LaTeX Info: Redefining \_ on input line 43.
)
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2020/11/24 v1.1c Standard LaTeX ifthen package (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/titlesec/titletoc.sty
Package: titletoc 2021/07/05 v2.14 TOC entries
\ttl@leftsep=\dimen265
)
(/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
Package: enumitem 2019/06/20 v3.9 Customized lists
\labelindent=\skip199
\enit@outerparindent=\dimen266
\enit@toks=\toks37
\enit@inbox=\box102
\enit@count@id=\count327
\enitdp@description=\count328
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/longtable.sty
Package: longtable 2021-09-01 v4.17 Multi-page Table package (DPC)
\LTleft=\skip256
\LTright=\skip257
\LTpre=\skip258
\LTpost=\skip259
\LTchunksize=\count329
\LTcapwidth=\dimen267
\LT@head=\box103
\LT@firsthead=\box104
\LT@foot=\box105
\LT@lastfoot=\box106
\LT@gbox=\box107
\LT@cols=\count330
\LT@rows=\count331
\c@LT@tables=\count332
\c@LT@chunks=\count333
\LT@p@ftn=\toks38
)
(/usr/share/texlive/texmf-dist/tex/latex/environ/environ.sty
Package: environ 2014/05/04 v0.3 A new way to define environments
(/usr/share/texlive/texmf-dist/tex/latex/trimspaces/trimspaces.sty
Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
)
\@envbody=\toks39
)
(/usr/share/texlive/texmf-dist/tex/latex/pageslts/pageslts.sty
Package: pageslts 2015/12/21 v1.2f Refers to special pages' numbers/names (HMM)
(/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend pac
kage
with kernel methods
)
(/usr/share/texlive/texmf-dist/tex/latex/everyshi/everyshi.sty
Package: everyshi 2020/11/18 v4.00 EveryShipout Package
)
(/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO)
(/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
))
(/usr/share/texlive/texmf-dist/tex/latex/undolabl/undolabl.sty
Package: undolabl 2015/03/29 v1.0l Overriding labels (HMM)
)
(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
(/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
\pdftexcmds@toks=\toks40
)
(/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
86.
)
Package pageslts Info: Option pagecontinue enabled
(pageslts) (maybe by default):
(pageslts) The pageslts package will continue the page numbering,
(pageslts) when the same page numbering scheme is used twice.
(pageslts) If you do not want this, call pageslts with option
(pageslts) pagecontinue=false (or use \setcounter{page}=1).
(pageslts) on input line 179.
(/usr/share/texlive/texmf-dist/tex/generic/alphalph/alphalph.sty
Package: alphalph 2019/12/09 v2.6 Convert numbers to letters (HO)
(/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
))
Package pageslts Info: Option romanMult enabled
(pageslts) (maybe by default):
(pageslts) The pageslts package will extend the page numbering
(pageslts) of the roman scheme below i with
(pageslts) 0, -i, -ii, -iii, -iv,...
(pageslts) If you do not want this, call pageslts with option
(pageslts) romanMult=false.
(pageslts) on input line 278.
Package pageslts Info: Option RomanMulti enabled
(pageslts) (maybe by default):
(pageslts) The pageslts package will extend the page numbering
(pageslts) of the Roman scheme below I with
(pageslts) 0, -I, -II, -III, -IV,...
(pageslts) If you do not want this, call pageslts with option
(pageslts) RomanMulti=false.
(pageslts) on input line 300.
Package pageslts Info: Option fnsymbolmult enabled
(pageslts) (maybe by default):
(pageslts) The pageslts package will extend the page numbering
(pageslts) of the footnotesymbol scheme using the alphalph
(pageslts) package.
(pageslts) If you do not want this, call pageslts with option
(pageslts) fnsymbolmult=false.
(pageslts) on input line 322.
\c@CurrentPage=\count334
\c@pagesLTS.pagenr=\count335
\c@pagesLTS.current.local.0=\count336
\c@pagesLTS.pnc.0=\count337
)
(/usr/share/texlive/texmf-dist/tex/latex/ragged2e/ragged2e.sty
Package: ragged2e 2021/12/15 v3.1 ragged2e Package
\CenteringLeftskip=\skip260
\RaggedLeftLeftskip=\skip261
\RaggedRightLeftskip=\skip262
\CenteringRightskip=\skip263
\RaggedLeftRightskip=\skip264
\RaggedRightRightskip=\skip265
\CenteringParfillskip=\skip266
\RaggedLeftParfillskip=\skip267
\RaggedRightParfillskip=\skip268
\JustifyingParfillskip=\skip269
\CenteringParindent=\skip270
\RaggedLeftParindent=\skip271
\RaggedRightParindent=\skip272
\JustifyingParindent=\skip273
)
(/usr/share/texmf/tex/latex/tipa/tipa.sty
Package: tipa 2002/08/08 TIPA version 1.1
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
(/usr/share/texmf/tex/latex/tipa/t3enc.def
File: t3enc.def 2001/12/31 T3 encoding
)
LaTeX Font Info: Trying to load font information for TU+stix on input line 1
12.
LaTeX Font Info: No file TUstix.fd. on input line 112.
LaTeX Font Warning: Font shape `TU/stix/m/n' undefined
(Font) using `TU/lmr/m/n' instead on input line 112.
)) (/usr/share/texlive/texmf-dist/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count338
\float@exts=\toks41
\float@box=\box108
\@float@everytoks=\toks42
\@floatcapt=\box109
)
(/usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
(/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
(/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
\pgfutil@everybye=\toks43
\pgfutil@tempdima=\dimen268
\pgfutil@tempdimb=\dimen269
(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.t
ex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
\pgfutil@abb=\box110
) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
(/usr/share/texlive/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/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
(/usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
Package: pgfsys 2021/05/15 v3.1.9a (3.1.9a)
(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)
\pgf@x=\dimen270
\pgf@y=\dimen271
\pgf@xa=\dimen272
\pgf@ya=\dimen273
\pgf@xb=\dimen274
\pgf@yb=\dimen275
\pgf@xc=\dimen276
\pgf@yc=\dimen277
\pgf@xd=\dimen278
\pgf@yd=\dimen279
\w@pgf@writea=\write4
\r@pgf@reada=\read4
\c@pgf@counta=\count339
\c@pgf@countb=\count340
\c@pgf@countc=\count341
\c@pgf@countd=\count342
\t@pgf@toka=\toks44
\t@pgf@tokb=\toks45
\t@pgf@tokc=\toks46
\pgf@sys@id@count=\count343
(/usr/share/texlive/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-luatex.def
(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-luatex.def
File: pgfsys-luatex.def 2021/05/15 v3.1.9a (3.1.9a)
(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.de
f
File: pgfsys-common-pdf.def 2021/05/15 v3.1.9a (3.1.9a)
)))
(/usr/share/texlive/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=\count344
\pgfsyssoftpath@bigbuffer@items=\count345
)
(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.
tex
File: pgfsysprotocol.code.tex 2021/05/15 v3.1.9a (3.1.9a)
))
(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
Package: pgfcore 2021/05/15 v3.1.9a (3.1.9a)
(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex
(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
\pgfmath@dimen=\dimen280
\pgfmath@count=\count346
\pgfmath@box=\box111
\pgfmath@toks=\toks47
\pgfmath@stack@operand=\toks48
\pgfmath@stack@operation=\toks49
)
(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex
(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code
.tex)
(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonomet
ric.code.tex)
(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.cod
e.tex)