This repository has been archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.log
1623 lines (1482 loc) · 58.9 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 pdfTeX, Version 3.141592653-2.6-1.40.24 (TeX Live 2022) (preloaded format=pdflatex 2022.12.9) 15 DEC 2022 22:19
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**main.tex
(./main.tex
LaTeX2e <2022-11-01> patch level 1
L3 programming layer <2022-11-02> (./conferencebooklet.cls
Document Class: conferencebooklet 2019/12/22 LaTeX Templates Conference Booklet
Class v1.0
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/koma-script/scrbook.
cls
Document Class: scrbook 2022/10/12 v3.38 KOMA-Script document class (book)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/koma-script/scrkbase
.sty
Package: scrkbase 2022/10/12 v3.38 KOMA-Script package (KOMA-Script-dependent b
asics and keyval usage)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/koma-script/scrbase.
sty
Package: scrbase 2022/10/12 v3.38 KOMA-Script package (KOMA-Script-independent
basics and keyval usage)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/koma-script/scrlfile
.sty
Package: scrlfile 2022/10/12 v3.38 KOMA-Script package (file load hooks)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/koma-script/scrlfile
-hook.sty
Package: scrlfile-hook 2022/10/12 v3.38 KOMA-Script package (using LaTeX hooks)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/koma-script/scrlogo.
sty
Package: scrlogo 2022/10/12 v3.38 KOMA-Script package (logo)
)))
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
\KV@toks@=\toks16
)
Applying: [2021/05/01] Usage of raw or classic option list on input line 252.
Already applied: [0000/00/00] Usage of raw or classic option list on input line
368.
))
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/koma-script/tocbasic
.sty
Package: tocbasic 2022/10/12 v3.38 KOMA-Script package (handling toc-files)
\scr@dte@tocline@numberwidth=\skip48
\scr@dte@tocline@numbox=\box51
)
Package tocbasic Info: omitting babel extension for `toc'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `toc' on input line 137.
Class scrbook Info: You've used standard option `openany'.
(scrbook) This is correct!
(scrbook) Internally I'm using `open=any'.
(scrbook) If you'd like to set the option with \KOMAoptions,
(scrbook) you'd have to use `open=any' there
(scrbook) instead of `openany', too.
Package scrbook Info: You've used standard option `12pt'.
(scrbook) This is correct!
(scrbook) Internally I'm using `fontsize=12pt'.
(scrbook) If you'd like to set the option with \KOMAoptions,
(scrbook) you'd have to use `fontsize=12pt' there
(scrbook) instead of `12pt', too.
Class scrbook Info: File `scrsize12pt.clo' used to setup font sizes on input li
ne 2617.
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/koma-script/scrsize1
2pt.clo
File: scrsize12pt.clo 2022/10/12 v3.38 KOMA-Script font size class option (12pt
)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/koma-script/typearea
.sty
Package: typearea 2022/10/12 v3.38 KOMA-Script package (type area)
\ta@bcor=\skip49
\ta@div=\count185
Package typearea Info: You've used standard option `a4paper'.
(typearea) This is correct!
(typearea) Internally I'm using `paper=a4'.
(typearea) If you'd like to set the option with \KOMAoptions,
(typearea) you'd have to use `paper=a4' there
(typearea) instead of `a4paper', too.
\ta@hblk=\skip50
\ta@vblk=\skip51
\ta@temp=\skip52
\footheight=\skip53
Package typearea Info: These are the values describing the layout:
(typearea) DIV = 12
(typearea) BCOR = 0.0pt
(typearea) \paperwidth = 597.50793pt
(typearea) \textwidth = 448.13095pt
(typearea) DIV departure = -6%
(typearea) \evensidemargin = 27.31467pt
(typearea) \oddsidemargin = -22.47766pt
(typearea) \paperheight = 845.04694pt
(typearea) \textheight = 635.5pt
(typearea) \topmargin = -41.72441pt
(typearea) \headheight = 18.125pt
(typearea) \headsep = 21.75pt
(typearea) \topskip = 12.0pt
(typearea) \footskip = 50.75pt
(typearea) \baselineskip = 14.5pt
(typearea) on input line 1767.
)
\c@part=\count186
\c@chapter=\count187
\c@section=\count188
\c@subsection=\count189
\c@subsubsection=\count190
\c@paragraph=\count191
\c@subparagraph=\count192
\scr@dte@chapter@maxnumwidth=\skip54
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\chapter on input line 5898.
\scr@dte@section@maxnumwidth=\skip55
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\section on input line 5909.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\section on input line 5909.
\scr@dte@part@maxnumwidth=\skip56
Class scrbook Info: using compatibility default `afterindent=true'
(scrbook) for `\part on input line 5918.
\scr@dte@subsection@maxnumwidth=\skip57
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\subsection on input line 5928.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\subsection on input line 5928.
\scr@dte@subsubsection@maxnumwidth=\skip58
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\subsubsection on input line 5938.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\subsubsection on input line 5938.
\scr@dte@paragraph@maxnumwidth=\skip59
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\paragraph on input line 5949.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\paragraph on input line 5949.
\scr@dte@subparagraph@maxnumwidth=\skip60
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\subparagraph on input line 5959.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\subparagraph on input line 5959.
\abovecaptionskip=\skip61
\belowcaptionskip=\skip62
\c@pti@nb@sid@b@x=\box52
Package tocbasic Info: omitting babel extension for `lof'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `lof' on input line 7142.
\scr@dte@figure@maxnumwidth=\skip63
\c@figure=\count193
Package tocbasic Info: omitting babel extension for `lot'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `lot' on input line 7159.
\scr@dte@table@maxnumwidth=\skip64
\c@table=\count194
Class scrbook Info: Redefining `\numberline' on input line 7330.
\bibindent=\dimen140
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/makecell/makecell.st
y
Package: makecell 2009/08/03 V0.1e Managing of Tab Column Heads and Cells
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/tools/array.sty
Package: array 2022/09/04 v2.5g Tabular extension package (FMi)
\col@sep=\dimen141
\ar@mcellbox=\box53
\extrarowheight=\dimen142
\NC@list=\toks17
\extratabsurround=\skip65
\backup@length=\skip66
\ar@cellbox=\box54
)
\rotheadsize=\dimen143
\c@nlinenum=\count195
\TeXr@lab=\toks18
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/graphics/graphicx.st
y
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/graphics/graphics.st
y
Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/graphics-cfg/graphic
s.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 107.
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/graphics-def/pdftex.
def
File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex
))
\Gin@req@height=\dimen144
\Gin@req@width=\dimen145
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/tools/multicol.sty
Package: multicol 2021/11/30 v1.9d multicolumn formatting (FMi)
\c@tracingmulticols=\count196
\mult@box=\box55
\multicol@leftmargin=\dimen146
\c@unbalance=\count197
\c@collectmore=\count198
\doublecol@number=\count199
\multicoltolerance=\count266
\multicolpretolerance=\count267
\full@width=\dimen147
\page@free=\dimen148
\premulticols=\dimen149
\postmulticols=\dimen150
\multicolsep=\skip67
\multicolbaselineskip=\skip68
\partial@page=\box56
\last@line=\box57
\maxbalancingoverflow=\dimen151
\mult@rightbox=\box58
\mult@grightbox=\box59
\mult@firstbox=\box60
\mult@gfirstbox=\box61
\@tempa=\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
\c@minrows=\count268
\c@columnbadness=\count269
\c@finalcolumnbadness=\count270
\last@try=\dimen152
\multicolovershoot=\dimen153
\multicolundershoot=\dimen154
\mult@nat@firstbox=\box98
\colbreak@box=\box99
\mc@col@check@num=\count271
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/tools/longtable.sty
Package: longtable 2021-09-01 v4.17 Multi-page Table package (DPC)
\LTleft=\skip69
\LTright=\skip70
\LTpre=\skip71
\LTpost=\skip72
\LTchunksize=\count272
\LTcapwidth=\dimen155
\LT@head=\box100
\LT@firsthead=\box101
\LT@foot=\box102
\LT@lastfoot=\box103
\LT@gbox=\box104
\LT@cols=\count273
\LT@rows=\count274
\c@LT@tables=\count275
\c@LT@chunks=\count276
\LT@p@ftn=\toks19
)
Class scrbook Info: longtable captions redefined on input line 43.
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/booktabs/booktabs.st
y
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen156
\lightrulewidth=\dimen157
\cmidrulewidth=\dimen158
\belowrulesep=\dimen159
\belowbottomsep=\dimen160
\aboverulesep=\dimen161
\abovetopsep=\dimen162
\cmidrulesep=\dimen163
\cmidrulekern=\dimen164
\defaultaddspace=\dimen165
\@cmidla=\count277
\@cmidlb=\count278
\@aboverulesep=\dimen166
\@belowrulesep=\dimen167
\@thisruleclass=\count279
\@lastruleclass=\count280
\@thisrulewidth=\dimen168
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/koma-script/scrhack.
sty
Package: scrhack 2022/10/12 v3.38 KOMA-Script package (hacking other packages)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/xpatch/xpatch.sty
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2022-11-02 L3 programming layer (loader)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-
pdftex.def
File: l3backend-pdftex.def 2022-10-26 L3 backend support: PDF output (pdfTeX)
\l__color_backend_stack_int=\count281
\l__pdf_internal_box=\box105
))
Package: xpatch 2020/03/25 v0.3a Extending etoolbox patching commands
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xp
arse.sty
Package: xparse 2022-06-22 L3 Experimental document command parser
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/etoolbox/etoolbox.st
y
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count282
)))
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/lastpage/lastpage.st
y
Package: lastpage 2021/09/03 v1.2n Refers to last page's name (HMM; JPG)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/multirow/multirow.st
y
Package: multirow 2021/03/15 v2.8 Span multiple rows of a table
\multirow@colwidth=\skip73
\multirow@cntb=\count283
\multirow@dima=\skip74
\bigstrutjot=\dimen169
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2022/04/08 v2.17n AMS math features
\@mathmargin=\skip75
For additional information on amsmath, use the `?' option.
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2021/08/26 v2.01 AMS text
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks20
\ex@=\dimen170
)) (/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/amsmath/amsbsy.st
y
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen171
) (/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2022/04/08 v2.04 operator names
)
\inf@bad=\count284
LaTeX Info: Redefining \frac on input line 234.
\uproot@=\count285
\leftroot@=\count286
LaTeX Info: Redefining \overline on input line 399.
LaTeX Info: Redefining \colon on input line 410.
\classnum@=\count287
\DOTSCASE@=\count288
LaTeX Info: Redefining \ldots on input line 496.
LaTeX Info: Redefining \dots on input line 499.
LaTeX Info: Redefining \cdots on input line 620.
\Mathstrutbox@=\box106
\strutbox@=\box107
LaTeX Info: Redefining \big on input line 722.
LaTeX Info: Redefining \Big on input line 723.
LaTeX Info: Redefining \bigg on input line 724.
LaTeX Info: Redefining \Bigg on input line 725.
\big@size=\dimen172
LaTeX Font Info: Redeclaring font encoding OML on input line 743.
LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
\macc@depth=\count289
LaTeX Info: Redefining \bmod on input line 905.
LaTeX Info: Redefining \pmod on input line 910.
LaTeX Info: Redefining \smash on input line 940.
LaTeX Info: Redefining \relbar on input line 970.
LaTeX Info: Redefining \Relbar on input line 971.
\c@MaxMatrixCols=\count290
\dotsspace@=\muskip16
\c@parentequation=\count291
\dspbrk@lvl=\count292
\tag@help=\toks21
\row@=\count293
\column@=\count294
\maxfields@=\count295
\andhelp@=\toks22
\eqnshift@=\dimen173
\alignsep@=\dimen174
\tagshift@=\dimen175
\tagwidth@=\dimen176
\totwidth@=\dimen177
\lineht@=\dimen178
\@envbody=\toks23
\multlinegap=\skip76
\multlinetaggap=\skip77
\mathdisplay@stack=\toks24
LaTeX Info: Redefining \[ on input line 2953.
LaTeX Info: Redefining \] on input line 2954.
)
Class scrbook Warning: Usage of package `fancyhdr' together
(scrbook) with a KOMA-Script class is not recommended.
(scrbook) I'd suggest to use
(scrbook) package `scrlayer' or `scrlayer-scrpage', because
(scrbook) they support KOMA-Script classes.
(scrbook) With `fancyhdr' several features of class `scrbook'
(scrbook) like options `headsepline', `footsepline' or command
(scrbook) `\MakeMarkcase' and the commands `\setkomafont' and
(scrbook) `\addtokomafont' for the page style elements need
(scrbook) explicite user intervention to work.
(scrbook) Nevertheless, using requested
(scrbook) package `fancyhdr' on input line 53.
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/fancyhdr/fancyhdr.st
y
Package: fancyhdr 2022/11/09 v4.1 Extensive control of page headers and footers
\f@nch@headwidth=\skip78
\f@nch@O@elh=\skip79
\f@nch@O@erh=\skip80
\f@nch@O@olh=\skip81
\f@nch@O@orh=\skip82
\f@nch@O@elf=\skip83
\f@nch@O@erf=\skip84
\f@nch@O@olf=\skip85
\f@nch@O@orf=\skip86
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/footmisc/footmisc.st
y
Package: footmisc 2022/03/08 v6.0d a miscellany of footnote facilities
\FN@temptoken=\toks25
\footnotemargin=\dimen179
\@outputbox@depth=\dimen180
Package footmisc Info: Declaring symbol style bringhurst on input line 695.
Package footmisc Info: Declaring symbol style chicago on input line 703.
Package footmisc Info: Declaring symbol style wiley on input line 712.
Package footmisc Info: Declaring symbol style lamport-robust on input line 723.
Package footmisc Info: Declaring symbol style lamport* on input line 743.
Package footmisc Info: Declaring symbol style lamport*-robust on input line 764
.
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/geometry/geometry.st
y
Package: geometry 2020/01/02 v5.9 Page Geometry
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2022/02/03 v1.0f TeX engine tests
))
\Gm@cnth=\count296
\Gm@cntv=\count297
\c@Gm@tempcnt=\count298
\Gm@bindingoffset=\dimen181
\Gm@wd@mp=\dimen182
\Gm@odd@mp=\dimen183
\Gm@even@mp=\dimen184
\Gm@layoutwidth=\dimen185
\Gm@layoutheight=\dimen186
\Gm@layouthoffset=\dimen187
\Gm@layoutvoffset=\dimen188
\Gm@dimlist=\toks26
) (/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/base/inputenc.sty
Package: inputenc 2021/02/14 v1.3d Input encoding file
\inpenc@prehook=\toks27
\inpenc@posthook=\toks28
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/carlito/carlito.sty
Package: carlito 2022/10/05 (Bob Tennent) Supports Carlito fonts for LaTeX, pdf
LaTeX, luaLaTeX and xeLaTeX.
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/iftex/ifxetex.sty
Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead.
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/iftex/ifluatex.sty
Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/xkeyval/xkeyval.sty
Package: xkeyval 2022/06/16 v2.9 package option processing (HA)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/xkeyval/xkeyval.te
x
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/xkeyval/xkvutils.t
ex
\XKV@toks=\toks29
\XKV@tempa@toks=\toks30
)
\XKV@depth=\count299
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
))
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/base/textcomp.sty
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/fontaxes/fontaxes.st
y
Package: fontaxes 2020/07/21 v1.0e Font selection axes
LaTeX Info: Redefining \upshape on input line 29.
LaTeX Info: Redefining \itshape on input line 31.
LaTeX Info: Redefining \slshape on input line 33.
LaTeX Info: Redefining \swshape on input line 35.
LaTeX Info: Redefining \scshape on input line 37.
LaTeX Info: Redefining \sscshape on input line 39.
LaTeX Info: Redefining \ulcshape on input line 41.
LaTeX Info: Redefining \textsw on input line 47.
LaTeX Info: Redefining \textssc on input line 48.
LaTeX Info: Redefining \textulc on input line 49.
))
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/microtype/microtype.
sty
Package: microtype 2022/06/23 v3.0f Micro-typographical refinements (RS)
\MT@toks=\toks31
\MT@tempbox=\box108
\MT@count=\count300
LaTeX Info: Redefining \noprotrusionifhmode on input line 1045.
LaTeX Info: Redefining \leftprotrusion on input line 1046.
LaTeX Info: Redefining \rightprotrusion on input line 1056.
LaTeX Info: Redefining \textls on input line 1234.
\MT@outer@kern=\dimen189
LaTeX Info: Redefining \textmicrotypecontext on input line 1858.
\MT@listname@count=\count301
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/microtype/microtype-
pdftex.def
File: microtype-pdftex.def 2022/06/23 v3.0f Definitions specific to pdftex (RS)
LaTeX Info: Redefining \lsstyle on input line 900.
LaTeX Info: Redefining \lslig on input line 900.
\MT@outer@space=\skip87
)
Package microtype Info: Loading configuration file microtype.cfg.
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/microtype/microtype.
cfg
File: microtype.cfg 2022/06/23 v3.0f microtype main configuration file (RS)
))
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.st
y
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
) (/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/graphics-cfg/color.c
fg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: pdftex.def on input line 227.
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/colortbl/colortbl.st
y
Package: colortbl 2022/06/20 v1.0f Color table columns (DPC)
\everycr=\toks32
\minrowclearance=\skip88
\rownum=\count302
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/graphics/mathcolor.l
tx)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1357.
Package xcolor Info: Model `RGB' extended on input line 1369.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376.
)
Package scrhack Info: hyperref hack deactivated because of
(scrhack) detection of KOMA-Script class, that doesn't
(scrhack) need that hack, on input line 113.
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.st
y
Package: hyperref 2022-11-13 v7.00u Hypertext links for LaTeX
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.st
y
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexc
mds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarer
r.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.
sty
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/kvdefinekeys/kvdef
inekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pdfescape/pdfescap
e.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/hycolor/hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/letltxmacro/letltxma
cro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/auxhook/auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2022-05-17 v2.50 Cross-referencing by name of section
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/refcount/refcount.st
y
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/gettitlestring/get
titlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.
sty
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
))
\c@section@level=\count303
)
\@linkdim=\dimen190
\Hy@linkcounter=\count304
\Hy@pagecounter=\count305
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2022-11-13 v7.00u Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.st
y
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/etexcmds/etexcmds.
sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count306
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2022-11-13 v7.00u Hyperref: PDF Unicode definition (HO)
Now handling font encoding PU ...
... no UTF-8 mapping file for font encoding PU
)
Package hyperref Info: Hyper figures OFF on input line 4162.
Package hyperref Info: Link nesting OFF on input line 4167.
Package hyperref Info: Hyper index ON on input line 4170.
Package hyperref Info: Plain pages OFF on input line 4177.
Package hyperref Info: Backreferencing OFF on input line 4182.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4410.
\c@Hy@tempcnt=\count307
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip17
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4748.
\XeTeXLinkMargin=\dimen191
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintc
alc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count308
\Field@Width=\dimen192
\Fld@charsize=\dimen193
Package hyperref Info: Hyper figures OFF on input line 6027.
Package hyperref Info: Link nesting OFF on input line 6032.
Package hyperref Info: Hyper index ON on input line 6035.
Package hyperref Info: backreferencing OFF on input line 6042.
Package hyperref Info: Link coloring OFF on input line 6047.
Package hyperref Info: Link coloring with OCG OFF on input line 6052.
Package hyperref Info: PDF/A mode OFF on input line 6057.
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/base/atbegshi-ltx.st
y
Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
package with kernel methods
)
\Hy@abspage=\count309
\c@Item=\count310
\c@Hfootnote=\count311
)
Package hyperref Info: Driver (autodetected): hpdftex.
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2022-11-13 v7.00u Hyperref driver for pdfTeX
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/base/atveryend-ltx.s
ty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend pac
kage
with kernel methods
)
\Fld@listcount=\count312
\c@bookmark@seq@number=\count313
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/rerunfilecheck/rerun
filecheck.sty
Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/uniquecounter/uniq
uecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
85.
)
\Hy@SectionHShift=\skip89
)
Package hyperref Info: Option `colorlinks' set `false' on input line 119.
\mybarpadding=\dimen194
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/background/backgroun
d.sty
Package: background 2014/03/04 v2.1 background material
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/pgf/frontendlayer/ti
kz.sty
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/pgf/basiclayer/pgf.s
ty
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/pgf/utilities/pgfrcs
.sty
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/utilities/pgfu
til-common.tex
\pgfutil@everybye=\toks33
\pgfutil@tempdima=\dimen195
\pgfutil@tempdimb=\dimen196
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/utilities/pgfu
til-common-lists.tex))
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/utilities/pgfu
til-latex.def
\pgfutil@abb=\box109
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/utilities/pgfr
cs.code.tex
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/pgf.revision.t
ex)
Package: pgfrcs 2021/05/15 v3.1.9a (3.1.9a)
))
Package: pgf 2021/05/15 v3.1.9a (3.1.9a)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/pgf/basiclayer/pgfco
re.sty
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/latex/pgf/systemlayer/pgfs
ys.sty
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/systemlayer/pg
fsys.code.tex
Package: pgfsys 2021/05/15 v3.1.9a (3.1.9a)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/utilities/pgfk
eys.code.tex
\pgfkeys@pathtoks=\toks34
\pgfkeys@temptoks=\toks35
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/utilities/pgfk
eysfiltered.code.tex
\pgfkeys@tmptoks=\toks36
))
\pgf@x=\dimen197
\pgf@y=\dimen198
\pgf@xa=\dimen199
\pgf@ya=\dimen256
\pgf@xb=\dimen257
\pgf@yb=\dimen258
\pgf@xc=\dimen259
\pgf@yc=\dimen260
\pgf@xd=\dimen261
\pgf@yd=\dimen262
\w@pgf@writea=\write3
\r@pgf@reada=\read2
\c@pgf@counta=\count314
\c@pgf@countb=\count315
\c@pgf@countc=\count316
\c@pgf@countd=\count317
\t@pgf@toka=\toks37
\t@pgf@tokb=\toks38
\t@pgf@tokc=\toks39
\pgf@sys@id@count=\count318
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/systemlayer/pg
f.cfg
File: pgf.cfg 2021/05/15 v3.1.9a (3.1.9a)
)
Driver file for pgf: pgfsys-pdftex.def
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/systemlayer/pg
fsys-pdftex.def
File: pgfsys-pdftex.def 2021/05/15 v3.1.9a (3.1.9a)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/systemlayer/pg
fsys-common-pdf.def
File: pgfsys-common-pdf.def 2021/05/15 v3.1.9a (3.1.9a)
)))
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/systemlayer/pg
fsyssoftpath.code.tex
File: pgfsyssoftpath.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgfsyssoftpath@smallbuffer@items=\count319
\pgfsyssoftpath@bigbuffer@items=\count320
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/systemlayer/pg
fsysprotocol.code.tex
File: pgfsysprotocol.code.tex 2021/05/15 v3.1.9a (3.1.9a)
))
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
core.code.tex
Package: pgfcore 2021/05/15 v3.1.9a (3.1.9a)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfmath.c
ode.tex
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfmathca
lc.code.tex
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfmathut
il.code.tex)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfmathpa
rser.code.tex
\pgfmath@dimen=\dimen263
\pgfmath@count=\count321
\pgfmath@box=\box110
\pgfmath@toks=\toks40
\pgfmath@stack@operand=\toks41
\pgfmath@stack@operation=\toks42
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.code.tex
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.basic.code.tex)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.trigonometric.code.tex)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.random.code.tex)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.comparison.code.tex)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.base.code.tex)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.round.code.tex)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.misc.code.tex)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.integerarithmetics.code.tex)))
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfmathfl
oat.code.tex
\c@pgfmathroundto@lastzeros=\count322
))
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/math/pgfint.co
de.tex)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
corepoints.code.tex
File: pgfcorepoints.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgf@picminx=\dimen264
\pgf@picmaxx=\dimen265
\pgf@picminy=\dimen266
\pgf@picmaxy=\dimen267
\pgf@pathminx=\dimen268
\pgf@pathmaxx=\dimen269
\pgf@pathminy=\dimen270
\pgf@pathmaxy=\dimen271
\pgf@xx=\dimen272
\pgf@xy=\dimen273
\pgf@yx=\dimen274
\pgf@yy=\dimen275
\pgf@zx=\dimen276
\pgf@zy=\dimen277
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
corepathconstruct.code.tex
File: pgfcorepathconstruct.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgf@path@lastx=\dimen278
\pgf@path@lasty=\dimen279
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
corepathusage.code.tex
File: pgfcorepathusage.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgf@shorten@end@additional=\dimen280
\pgf@shorten@start@additional=\dimen281
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
corescopes.code.tex
File: pgfcorescopes.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgfpic=\box111
\pgf@hbox=\box112
\pgf@layerbox@main=\box113
\pgf@picture@serial@count=\count323
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
coregraphicstate.code.tex
File: pgfcoregraphicstate.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgflinewidth=\dimen282
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
coretransformations.code.tex
File: pgfcoretransformations.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgf@pt@x=\dimen283
\pgf@pt@y=\dimen284
\pgf@pt@temp=\dimen285
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
corequick.code.tex
File: pgfcorequick.code.tex 2021/05/15 v3.1.9a (3.1.9a)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
coreobjects.code.tex
File: pgfcoreobjects.code.tex 2021/05/15 v3.1.9a (3.1.9a)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
corepathprocessing.code.tex
File: pgfcorepathprocessing.code.tex 2021/05/15 v3.1.9a (3.1.9a)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
corearrows.code.tex
File: pgfcorearrows.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgfarrowsep=\dimen286
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
coreshade.code.tex
File: pgfcoreshade.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgf@max=\dimen287
\pgf@sys@shading@range@num=\count324
\pgf@shadingcount=\count325
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
coreimage.code.tex
File: pgfcoreimage.code.tex 2021/05/15 v3.1.9a (3.1.9a)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
coreexternal.code.tex
File: pgfcoreexternal.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgfexternal@startupbox=\box114
))
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
corelayers.code.tex
File: pgfcorelayers.code.tex 2021/05/15 v3.1.9a (3.1.9a)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
coretransparency.code.tex
File: pgfcoretransparency.code.tex 2021/05/15 v3.1.9a (3.1.9a)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
corepatterns.code.tex
File: pgfcorepatterns.code.tex 2021/05/15 v3.1.9a (3.1.9a)
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/basiclayer/pgf
corerdf.code.tex
File: pgfcorerdf.code.tex 2021/05/15 v3.1.9a (3.1.9a)
)))
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/modules/pgfmod
uleshapes.code.tex
File: pgfmoduleshapes.code.tex 2021/05/15 v3.1.9a (3.1.9a)
\pgfnodeparttextbox=\box115
)
(/home/zaikunzhang/local/texlive/2022/texmf-dist/tex/generic/pgf/modules/pgfmod
uleplot.code.tex
File: pgfmoduleplot.code.tex 2021/05/15 v3.1.9a (3.1.9a)