forked from cnlinxi/book-text-to-speech
-
Notifications
You must be signed in to change notification settings - Fork 3
/
text_to_speech.log
2188 lines (2133 loc) · 103 KB
/
text_to_speech.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 XeTeX, Version 3.141592653-2.6-0.999993 (TeX Live 2021) (preloaded format=xelatex 2022.3.2) 19 APR 2022 15:14
entering extended mode
restricted \write18 enabled.
file:line:error style messages enabled.
%&-line parsing enabled.
**/Users/dongse/Workspace/book-text-to-speech/text_to_speech
(/Users/dongse/Workspace/book-text-to-speech/text_to_speech.tex
LaTeX2e <2020-10-01> patch level 4
L3 programming layer <2021-02-18> (./elegantbook.cls
Document Class: elegantbook 2021/05/02 v4.1 ElegantBook document class
(/usr/local/texlive/2021/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO)
(/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/ltxcmds/ltxcmds.sty
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
) (/usr/local/texlive/2021/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
)) (/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=\count175
) (/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/bk10.clo
File: bk10.clo 2020/04/10 v1.4m Standard LaTeX file (size option)
)
\c@part=\count176
\c@chapter=\count177
\c@section=\count178
\c@subsection=\count179
\c@subsubsection=\count180
\c@paragraph=\count181
\c@subparagraph=\count182
\c@figure=\count183
\c@table=\count184
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen138
) (/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/csquotes/csquotes.sty
Package: csquotes 2021-02-22 v5.2l context-sensitive quotations (JAW)
\csq@reset=\count185
\csq@gtype=\count186
\csq@glevel=\count187
\csq@qlevel=\count188
\csq@maxlvl=\count189
\csq@tshold=\count190
\csq@ltx@everypar=\toks16
(/usr/local/texlive/2021/texmf-dist/tex/latex/csquotes/csquotes.def
File: csquotes.def 2021-02-22 v5.2l csquotes generic definitions (JAW)
)
Package csquotes Info: Trying to load configuration file 'csquotes.cfg'...
Package csquotes Info: ... configuration file loaded successfully.
(/usr/local/texlive/2021/texmf-dist/tex/latex/csquotes/csquotes.cfg
File: csquotes.cfg
)) (/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2021-02-27 v7.00k Hypertext links for LaTeX
(/usr/local/texlive/2021/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2020/03/06 v1.0d TeX engine tests
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO)
(/usr/local/texlive/2021/texmf-dist/tex/generic/infwarerr/infwarerr.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 not found.
) (/usr/local/texlive/2021/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pdfescape/pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/hycolor/hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/auxhook/auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
\@linkdim=\dimen139
\Hy@linkcounter=\count191
\Hy@pagecounter=\count192
(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2021-02-27 v7.00k Hyperref: PDFDocEncoding definition (HO)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/hyperref-langpatches.def
File: hyperref-langpatches.def 2021-02-27 v7.00k Hyperref: patches for babel languages
) (/usr/local/texlive/2021/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
) (/usr/local/texlive/2021/texmf-dist/tex/generic/etexcmds/etexcmds.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count193
(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2021-02-27 v7.00k Hyperref: PDF Unicode definition (HO)
)
Package hyperref Info: Hyper figures OFF on input line 4192.
Package hyperref Info: Link nesting OFF on input line 4197.
Package hyperref Info: Hyper index ON on input line 4200.
Package hyperref Info: Plain pages OFF on input line 4207.
Package hyperref Info: Backreferencing OFF on input line 4212.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4445.
\c@Hy@tempcnt=\count194
(/usr/local/texlive/2021/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip16
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4804.
\XeTeXLinkMargin=\dimen140
(/usr/local/texlive/2021/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(/usr/local/texlive/2021/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO)
))
\Fld@menulength=\count195
\Field@Width=\dimen141
\Fld@charsize=\dimen142
Package hyperref Info: Hyper figures OFF on input line 6075.
Package hyperref Info: Link nesting OFF on input line 6080.
Package hyperref Info: Hyper index ON on input line 6083.
Package hyperref Info: backreferencing OFF on input line 6090.
Package hyperref Info: Link coloring OFF on input line 6095.
Package hyperref Info: Link coloring with OCG OFF on input line 6100.
Package hyperref Info: PDF/A mode OFF on input line 6105.
LaTeX Info: Redefining \ref on input line 6145.
LaTeX Info: Redefining \pageref on input line 6149.
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/atbegshi-ltx.sty
Package: atbegshi-ltx 2020/08/17 v1.0a Emulation of the original atbegshi package
with kernel methods
)
\Hy@abspage=\count196
\c@Item=\count197
\c@Hfootnote=\count198
)
Package hyperref Info: Driver (autodetected): hxetex.
(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/hxetex.def
File: hxetex.def 2021-02-27 v7.00k Hyperref driver for XeTeX
(/usr/local/texlive/2021/texmf-dist/tex/generic/stringenc/stringenc.sty
Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO)
)
\pdfm@box=\box47
\c@Hy@AnnotLevel=\count199
\HyField@AnnotCount=\count266
\Fld@listcount=\count267
\c@bookmark@seq@number=\count268
(/usr/local/texlive/2021/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/atveryend-ltx.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atvery package
with kernel methods
) (/usr/local/texlive/2021/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 286.
)
\Hy@SectionHShift=\skip49
)
Package hyperref Info: Option `breaklinks' set `true' on input line 108.
Package hyperref Info: Option `unicode' set `true' on input line 108.
Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 108.
Package hyperref Info: Option `bookmarksopen' set `true' on input line 108.
Package hyperref Info: Option `colorlinks' set `true' on input line 108.
Package hyperref Info: Option `plainpages' set `false' on input line 108.
Package hyperref Info: Option `linktocpage' set `true' on input line 108.
(/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/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
)
\Gm@cnth=\count269
\Gm@cntv=\count270
\c@Gm@tempcnt=\count271
\Gm@bindingoffset=\dimen143
\Gm@wd@mp=\dimen144
\Gm@odd@mp=\dimen145
\Gm@even@mp=\dimen146
\Gm@layoutwidth=\dimen147
\Gm@layoutheight=\dimen148
\Gm@layouthoffset=\dimen149
\Gm@layoutvoffset=\dimen150
\Gm@dimlist=\toks17
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tools/indentfirst.sty
Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/comment/comment.sty
\CommentStream=\write3
Excluding comment 'comment') (/usr/local/texlive/2021/texmf-dist/tex/latex/ctex/ctex.sty (/usr/local/texlive/2021/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2021-02-18 L3 programming layer (loader)
(/usr/local/texlive/2021/texmf-dist/tex/latex/l3backend/l3backend-xetex.def
File: l3backend-xetex.def 2021-03-18 L3 backend support: XeTeX
(|extractbb --version)
\c__kernel_sys_dvipdfmx_version_int=\count272
\l__color_backend_stack_int=\count273
\g__color_backend_stack_int=\count274
\g__graphics_track_int=\count275
\l__pdf_internal_box=\box48
\g__pdf_backend_object_int=\count276
\g__pdf_backend_annotation_int=\count277
\g__pdf_backend_link_int=\count278
))
Package: ctex 2021/03/14 v2.5.6 Chinese adapter in LaTeX (CTEX)
(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse.sty (/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))) (/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
Package: l3keys2e 2021-03-12 LaTeX2e option processing using LaTeX3 keys
) (/usr/local/texlive/2021/texmf-dist/tex/latex/ctex/ctexhook.sty
Package: ctexhook 2021/03/14 v2.5.6 Document and package hooks (CTEX)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/ctex/ctexpatch.sty
Package: ctexpatch 2021/03/14 v2.5.6 Patching commands (CTEX)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/base/fix-cm.sty
Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/ts1enc.def
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding TS1 on input line 47.
)) (/usr/local/texlive/2021/texmf-dist/tex/latex/everysel/everysel.sty
Package: everysel 2021/01/20 v2.1 EverySelectfont Package (MS)
(/usr/local/texlive/2021/texmf-dist/tex/latex/everysel/everysel-2011-10-28.sty))
\l__ctex_tmp_int=\count279
\l__ctex_tmp_box=\box49
\l__ctex_tmp_dim=\dimen151
\g__ctex_section_depth_int=\count280
\g__ctex_font_size_int=\count281
(/usr/local/texlive/2021/texmf-dist/tex/latex/ctex/config/ctexopts.cfg
File: ctexopts.cfg 2021/03/14 v2.5.6 Option configuration file (CTEX)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def
File: ctex-engine-xetex.def 2021/03/14 v2.5.6 XeLaTeX adapter (CTEX)
(/usr/local/texlive/2021/texmf-dist/tex/xelatex/xecjk/xeCJK.sty
Package: xeCJK 2020/10/19 v3.8.6 Typesetting CJK scripts with XeLaTeX
(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty
Package: xtemplate 2021-03-12 L3 Experimental prototype document functions
\l__xtemplate_tmp_dim=\dimen152
\l__xtemplate_tmp_int=\count282
\l__xtemplate_tmp_muskip=\muskip17
\l__xtemplate_tmp_skip=\skip50
)
\l__xeCJK_tmp_int=\count283
\l__xeCJK_tmp_box=\box50
\l__xeCJK_tmp_dim=\dimen153
\l__xeCJK_tmp_skip=\skip51
\g__xeCJK_space_factor_int=\count284
\l__xeCJK_begin_int=\count285
\l__xeCJK_end_int=\count286
\c__xeCJK_CJK_class_int=\XeTeXcharclass1
\c__xeCJK_FullLeft_class_int=\XeTeXcharclass2
\c__xeCJK_FullRight_class_int=\XeTeXcharclass3
\c__xeCJK_HalfLeft_class_int=\XeTeXcharclass4
\c__xeCJK_HalfRight_class_int=\XeTeXcharclass5
\c__xeCJK_NormalSpace_class_int=\XeTeXcharclass6
\c__xeCJK_CM_class_int=\XeTeXcharclass7
\c__xeCJK_HangulJamo_class_int=\XeTeXcharclass8
\l__xeCJK_last_skip=\skip52
\g__xeCJK_node_int=\count287
\c__xeCJK_CJK_node_dim=\dimen154
\c__xeCJK_CJK-space_node_dim=\dimen155
\c__xeCJK_default_node_dim=\dimen156
\c__xeCJK_default-space_node_dim=\dimen157
\c__xeCJK_CJK-widow_node_dim=\dimen158
\c__xeCJK_normalspace_node_dim=\dimen159
\l__xeCJK_ccglue_skip=\skip53
\l__xeCJK_ecglue_skip=\skip54
\l__xeCJK_punct_kern_skip=\skip55
\l__xeCJK_last_penalty_int=\count288
\l__xeCJK_last_bound_dim=\dimen160
\l__xeCJK_last_kern_dim=\dimen161
\l__xeCJK_widow_penalty_int=\count289
Package xtemplate Info: Declaring object type 'xeCJK/punctuation' taking 0
(xtemplate) argument(s) on line 2341.
\l__xeCJK_fixed_punct_width_dim=\dimen162
\l__xeCJK_mixed_punct_width_dim=\dimen163
\l__xeCJK_middle_punct_width_dim=\dimen164
\l__xeCJK_fixed_margin_width_dim=\dimen165
\l__xeCJK_mixed_margin_width_dim=\dimen166
\l__xeCJK_middle_margin_width_dim=\dimen167
\l__xeCJK_bound_punct_width_dim=\dimen168
\l__xeCJK_bound_margin_width_dim=\dimen169
\l__xeCJK_margin_minimum_dim=\dimen170
\l__xeCJK_kerning_total_width_dim=\dimen171
\l__xeCJK_same_align_margin_dim=\dimen172
\l__xeCJK_different_align_margin_dim=\dimen173
\l__xeCJK_kerning_margin_width_dim=\dimen174
\l__xeCJK_kerning_margin_minimum_dim=\dimen175
\l__xeCJK_bound_dim=\dimen176
\l__xeCJK_reverse_bound_dim=\dimen177
\l__xeCJK_margin_dim=\dimen178
\l__xeCJK_minimum_bound_dim=\dimen179
\l__xeCJK_kerning_margin_dim=\dimen180
\g__xeCJK_family_int=\count290
\l__xeCJK_fam_int=\count291
\g__xeCJK_fam_allocation_int=\count292
\l__xeCJK_verb_case_int=\count293
\l__xeCJK_verb_exspace_skip=\skip56
(/usr/local/texlive/2021/texmf-dist/tex/latex/fontspec/fontspec.sty
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=\count294
\l__fontspec_language_int=\count295
\l__fontspec_strnum_int=\count296
\l__fontspec_tmp_int=\count297
\l__fontspec_tmpa_int=\count298
\l__fontspec_tmpb_int=\count299
\l__fontspec_tmpc_int=\count300
\l__fontspec_em_int=\count301
\l__fontspec_emdef_int=\count302
\l__fontspec_strong_int=\count303
\l__fontspec_strongdef_int=\count304
\l__fontspec_tmpa_dim=\dimen181
\l__fontspec_tmpb_dim=\dimen182
\l__fontspec_tmpc_dim=\dimen183
(/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/xelatex/xecjk/xeCJK.cfg
File: xeCJK.cfg 2020/10/19 v3.8.6 Configuration file for xeCJK package
))
\ccwd=\dimen184
\l__ctex_ccglue_skip=\skip57
)
\l__ctex_ziju_dim=\dimen185
(/usr/local/texlive/2021/texmf-dist/tex/latex/zhnumber/zhnumber.sty
Package: zhnumber 2020/05/01 v2.8 Typesetting numbers with Chinese glyphs
\l__zhnum_scale_int=\count305
(/usr/local/texlive/2021/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg
File: zhnumber-utf8.cfg 2020/05/01 v2.8 Chinese numerals with UTF8 encoding
)) (/usr/local/texlive/2021/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-plain.def
File: ctex-scheme-plain.def 2021/03/14 v2.5.6 Plain scheme for generic (CTEX)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-mac.def
File: ctex-fontset-mac.def 2021/03/14 v2.5.6 macOS fonts definition (CTEX)
(/usr/local/texlive/2021/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-macnew.def
File: ctex-fontset-macnew.def 2021/03/14 v2.5.6 macOS fonts definition for El Capitan or later version (CTEX)
Package fontspec Warning: Font "Songti SC Light" does not contain requested
(fontspec) Script "CJK".
Package fontspec Info: Font family 'SongtiSCLight(0)' created for font 'Songti
(fontspec) SC Light' with options
(fontspec) [Script={CJK},BoldItalicFont={Kaiti SC
(fontspec) Bold},BoldFont={Songti SC Bold},ItalicFont={Kaiti SC}].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Songti SC
(fontspec) Light/OT:language=dflt;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Songti SC
(fontspec) Bold/OT:language=dflt;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Kaiti
(fontspec) SC/OT:language=dflt;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Kaiti SC
(fontspec) Bold/OT:language=dflt;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
))) (/usr/local/texlive/2021/texmf-dist/tex/latex/ctex/config/ctex.cfg
File: ctex.cfg 2021/03/14 v2.5.6 Configuration file (CTEX)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/newtx/newtxtext.sty
Package: newtxtext 2020/09/19 v1.630
`newtxtext' v1.630, 2020/09/19 Text macros taking advantage of TeX-Gyre Termes fonts (msharpe) (/usr/local/texlive/2021/texmf-dist/tex/latex/fontaxes/fontaxes.sty
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.
)
\ntx@fs=\dimen186
(/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=\toks18
\XKV@tempa@toks=\toks19
)
\XKV@depth=\count306
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
)) (/usr/local/texlive/2021/texmf-dist/tex/generic/xstring/xstring.sty (/usr/local/texlive/2021/texmf-dist/tex/generic/xstring/xstring.tex
\integerpart=\count307
Invalid UTF-8 byte or sequence at line 35 replaced by U+FFFD.
\decimalpart=\count308
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)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/carlisle/scalefnt.sty) (/usr/local/texlive/2021/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2020/08/10 v2.0s Standard LaTeX package
LaTeX Font Info: Trying to load font information for T1+ntxtlf on input line 112.
(/usr/local/texlive/2021/texmf-dist/tex/latex/newtx/t1ntxtlf.fd
File: t1ntxtlf.fd 2015/01/17 v1.0 font definition file for T1/ntx/tlf
)
LaTeX Font Info: Font shape `T1/ntxtlf/m/n' will be
(Font) scaled to size 10.0pt on input line 112.
) (/usr/local/texlive/2021/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 75.
)
LaTeX Info: Redefining \textin on input line 103.
\ntxt@cntz=\count309
LaTeX Font Info: Redeclaring math symbol \mathsterling on input line 316.
) (/usr/local/texlive/2021/texmf-dist/tex/latex/anyfontsize/anyfontsize.sty
Invalid UTF-8 byte or sequence at line 3 replaced by U+FFFD.
Invalid UTF-8 byte or sequence at line 3 replaced by U+FFFD.
Package: anyfontsize 2007/11/22 anyfontsize.sty by pts
) (/usr/local/texlive/2021/texmf-dist/tex/latex/newtx/newtxmath.sty
Package: newtxmath 2020/12/20 v1.640
`newtxmath' v1.640, 2020/12/20 Math macros based originally on txfonts (msharpe) (/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2020/09/23 v2.17i AMS math features
\@mathmargin=\skip58
For additional information on amsmath, use the `?' option.
(/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01 AMS text
(/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks20
\ex@=\dimen187
)) (/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen188
) (/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count310
LaTeX Info: Redefining \frac on input line 234.
\uproot@=\count311
\leftroot@=\count312
LaTeX Info: Redefining \overline on input line 399.
\classnum@=\count313
\DOTSCASE@=\count314
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@=\box51
\strutbox@=\box52
\big@size=\dimen189
LaTeX Font Info: Redeclaring font encoding OML on input line 743.
LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
\macc@depth=\count315
\c@MaxMatrixCols=\count316
\dotsspace@=\muskip18
\c@parentequation=\count317
\dspbrk@lvl=\count318
\tag@help=\toks21
\row@=\count319
\column@=\count320
\maxfields@=\count321
\andhelp@=\toks22
\eqnshift@=\dimen190
\alignsep@=\dimen191
\tagshift@=\dimen192
\tagwidth@=\dimen193
\totwidth@=\dimen194
\lineht@=\dimen195
\@envbody=\toks23
\multlinegap=\skip59
\multlinetaggap=\skip60
\mathdisplay@stack=\toks24
LaTeX Info: Redefining \[ on input line 2923.
LaTeX Info: Redefining \] on input line 2924.
) (/usr/local/texlive/2021/texmf-dist/tex/generic/iftex/ifxetex.sty
Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead.
) (/usr/local/texlive/2021/texmf-dist/tex/generic/iftex/ifluatex.sty
Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
) (/usr/local/texlive/2021/texmf-dist/tex/latex/oberdiek/centernot.sty
Package: centernot 2016/05/16 v1.4 Centers the not symbol horizontally (HO)
)
\tx@cntz=\count322
(/usr/local/texlive/2021/texmf-dist/tex/generic/kastrup/binhex.tex)
\tx@Isdigit=\count323
\tx@IsAlNum=\count324
\tx@tA=\toks25
\tx@tB=\toks26
\tx@su=\read2
LaTeX Font Info: Redeclaring symbol font `operators' on input line 360.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/ntxtlf/m/n on input line 360.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/ntxtlf/m/n on input line 360.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/ntxtlf/m/n --> OT1/ntxtlf/b/n on input line 361.
LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 369.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> T1/qhv/m/n on input line 369.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> T1/qhv/m/n on input line 369.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 370.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/ntxtlf/m/it on input line 370.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/ntxtlf/m/it on input line 370.
LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 371.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> T1/ntxtt/m/n on input line 371.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> T1/ntxtt/m/n on input line 371.
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 373.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/ntxtlf/b/n on input line 373.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/ntxtlf/b/n on input line 373.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/ntxtlf/m/it --> OT1/ntxtlf/b/it on input line 374.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) T1/qhv/m/n --> T1/qhv/b/n on input line 375.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) T1/ntxtt/m/n --> T1/ntxtt/b/n on input line 376.
LaTeX Font Info: Redeclaring symbol font `letters' on input line 477.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/ntxmi/m/it on input line 477.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/ntxmi/m/it on input line 477.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/ntxmi/m/it --> OML/ntxmi/b/it on input line 478.
\symlettersA=\mathgroup4
LaTeX Font Info: Overwriting symbol font `lettersA' in version `bold'
(Font) U/ntxmia/m/it --> U/ntxmia/b/it on input line 542.
LaTeX Font Info: Redeclaring symbol font `symbols' on input line 563.
LaTeX Font Info: Encoding `OMS' has changed to `LMS' for symbol font
(Font) `symbols' in the math version `normal' on input line 563.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> LMS/ntxsy/m/n on input line 563.
LaTeX Font Info: Encoding `OMS' has changed to `LMS' for symbol font
(Font) `symbols' in the math version `bold' on input line 563.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> LMS/ntxsy/m/n on input line 563.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) LMS/ntxsy/m/n --> LMS/ntxsy/b/n on input line 564.
\symAMSm=\mathgroup5
LaTeX Font Info: Overwriting symbol font `AMSm' in version `bold'
(Font) U/ntxsym/m/n --> U/ntxsym/b/n on input line 587.
\symsymbolsC=\mathgroup6
LaTeX Font Info: Overwriting symbol font `symbolsC' in version `bold'
(Font) U/ntxsyc/m/n --> U/ntxsyc/b/n on input line 608.
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 621.
LaTeX Font Info: Encoding `OMX' has changed to `LMX' for symbol font
(Font) `largesymbols' in the math version `normal' on input line 621.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> LMX/ntxexx/m/n on input line 621.
LaTeX Font Info: Encoding `OMX' has changed to `LMX' for symbol font
(Font) `largesymbols' in the math version `bold' on input line 621.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> LMX/ntxexx/m/n on input line 621.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) LMX/ntxexx/m/n --> LMX/ntxexx/b/n on input line 622.
\symlargesymbolsTXA=\mathgroup7
LaTeX Font Info: Overwriting symbol font `largesymbolsTXA' in version `bold'
(Font) U/ntxexa/m/n --> U/ntxexa/b/n on input line 636.
\tx@sbptoks=\toks27
LaTeX Font Info: Redeclaring math delimiter \lfloor on input line 858.
LaTeX Font Info: Redeclaring math delimiter \rfloor on input line 859.
LaTeX Font Info: Redeclaring math delimiter \lceil on input line 860.
LaTeX Font Info: Redeclaring math delimiter \rceil on input line 861.
LaTeX Font Info: Redeclaring math delimiter \lbrace on input line 862.
LaTeX Font Info: Redeclaring math delimiter \rbrace on input line 863.
LaTeX Font Info: Redeclaring math delimiter \langle on input line 864.
LaTeX Font Info: Redeclaring math delimiter \rangle on input line 866.
LaTeX Font Info: Redeclaring math delimiter \arrowvert on input line 870.
LaTeX Font Info: Redeclaring math delimiter \vert on input line 871.
LaTeX Font Info: Redeclaring math symbol \hbar on input line 917.
LaTeX Font Info: Redeclaring math accent \dot on input line 942.
LaTeX Font Info: Redeclaring math accent \ddot on input line 943.
LaTeX Font Info: Redeclaring math accent \vec on input line 2006.
LaTeX Font Info: Redeclaring math symbol \imathscr on input line 2646.
LaTeX Font Info: Redeclaring math symbol \jmathscr on input line 2647.
LaTeX Info: Redefining \Bbbk on input line 2780.
LaTeX Info: Redefining \not on input line 2929.
) (/usr/local/texlive/2021/texmf-dist/tex/latex/esint/esint.sty
Package: esint
\symlargesymbolsA=\mathgroup8
)
\symCMlargesymbols=\mathgroup9
(/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.
(/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
) (/usr/local/texlive/2021/texmf-dist/tex/latex/colortbl/colortbl.sty
Package: colortbl 2020/01/04 v1.0e Color table columns (DPC)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tools/array.sty
Package: array 2020/10/01 v2.5c Tabular extension package (FMi)
\col@sep=\dimen196
\ar@mcellbox=\box53
\extrarowheight=\dimen197
\NC@list=\toks28
\extratabsurround=\skip61
\backup@length=\skip62
\ar@cellbox=\box54
)
\everycr=\toks29
\minrowclearance=\skip63
)
\rownum=\count325
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/latex/mwe/mwe.sty
Package: mwe 2018/03/30 v0.5 Package to support minimal working examples (MWE)
(/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.
)
\Gin@req@height=\dimen198
\Gin@req@width=\dimen199
) (/usr/local/texlive/2021/texmf-dist/tex/latex/lipsum/lipsum.sty
Package: lipsum 2021-03-03 v2.3 150 paragraphs of Lorem Ipsum dummy text
(/usr/local/texlive/2021/texmf-dist/tex/latex/lipsum/lipsum.ltd.tex
File: lipsum.ltd.tex 2021-03-03 v2.3 The Lorem ipsum dummy text
)) (/usr/local/texlive/2021/texmf-dist/tex/latex/blindtext/blindtext.sty
Package: blindtext 2012/01/06 V2.0 blindtext-Package
(/usr/local/texlive/2021/texmf-dist/tex/latex/tools/xspace.sty
Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH)
)
\c@blindtext=\count326
\c@Blindtext=\count327
\c@blind@countparstart=\count328
\blind@countxx=\count329
\blindtext@numBlindtext=\count330
\blind@countyy=\count331
\c@blindlist=\count332
\c@blindlistlevel=\count333
\c@blindlist@level=\count334
\blind@listitem=\count335
\c@blind@listcount=\count336
\c@blind@levelcount=\count337
\blind@mathformula=\count338
\blind@Mathformula=\count339
\c@blind@randomcount=\count340
\c@blind@randommax=\count341
\c@blind@pangramcount=\count342
\c@blind@pangrammax=\count343
)) (/usr/local/texlive/2021/texmf-dist/tex/latex/tools/enumerate.sty
Package: enumerate 2015/07/23 v3.00 enumerate extensions (DPC)
\@enLab=\toks30
) (/usr/local/texlive/2021/texmf-dist/tex/latex/enumitem/enumitem.sty
Package: enumitem 2019/06/20 v3.9 Customized lists
\labelindent=\skip64
\enit@outerparindent=\dimen256
\enit@toks=\toks31
\enit@inbox=\box55
\enit@count@id=\count344
\enitdp@description=\count345
) (/usr/local/texlive/2021/texmf-dist/tex/latex/caption/caption.sty
Package: caption 2020/10/26 v3.5g Customizing captions (AR)
(/usr/local/texlive/2021/texmf-dist/tex/latex/caption/caption3.sty
Package: caption3 2020/10/21 v2.2e caption3 kernel (AR)
\captionmargin=\dimen257
\captionmargin@=\dimen258
\captionwidth=\dimen259
\caption@tempdima=\dimen260
\caption@indent=\dimen261
\caption@parindent=\dimen262
\caption@hangindent=\dimen263
Package caption Info: Standard document class detected.
)
\c@caption@flags=\count346
\c@continuedfloat=\count347
Package caption Info: hyperref package is loaded.
) (/usr/local/texlive/2021/texmf-dist/tex/latex/jknapltx/mathrsfs.sty
Package: mathrsfs 1996/01/01 Math RSFS package v1.0 (jk)
\symrsfs=\mathgroup10
) (/usr/local/texlive/2021/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\symAMSa=\mathgroup11
\symAMSb=\mathgroup12
LaTeX Font Info: Redeclaring math delimiter \ulcorner on input line 74.
LaTeX Font Info: Redeclaring math delimiter \urcorner on input line 75.
LaTeX Font Info: Redeclaring math delimiter \llcorner on input line 76.
LaTeX Font Info: Redeclaring math delimiter \lrcorner on input line 77.
LaTeX Font Info: Redeclaring math symbol \square on input line 141.
LaTeX Font Info: Redeclaring math symbol \lozenge on input line 142.
) (/usr/local/texlive/2021/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
LaTeX Font Info: Redeclaring math symbol \boxdot on input line 44.
LaTeX Font Info: Redeclaring math symbol \boxplus on input line 45.
LaTeX Font Info: Redeclaring math symbol \boxtimes on input line 46.
LaTeX Font Info: Redeclaring math symbol \blacksquare on input line 48.
LaTeX Font Info: Redeclaring math symbol \centerdot on input line 49.
LaTeX Font Info: Redeclaring math symbol \blacklozenge on input line 51.
LaTeX Font Info: Redeclaring math symbol \circlearrowright on input line 52.
LaTeX Font Info: Redeclaring math symbol \circlearrowleft on input line 53.
LaTeX Font Info: Redeclaring math symbol \leftrightharpoons on input line 56.
LaTeX Font Info: Redeclaring math symbol \boxminus on input line 57.
LaTeX Font Info: Redeclaring math symbol \Vdash on input line 58.
LaTeX Font Info: Redeclaring math symbol \Vvdash on input line 59.
LaTeX Font Info: Redeclaring math symbol \vDash on input line 60.
LaTeX Font Info: Redeclaring math symbol \twoheadrightarrow on input line 61.
LaTeX Font Info: Redeclaring math symbol \twoheadleftarrow on input line 62.
LaTeX Font Info: Redeclaring math symbol \leftleftarrows on input line 63.
LaTeX Font Info: Redeclaring math symbol \rightrightarrows on input line 64.
LaTeX Font Info: Redeclaring math symbol \upuparrows on input line 65.
LaTeX Font Info: Redeclaring math symbol \downdownarrows on input line 66.
LaTeX Font Info: Redeclaring math symbol \upharpoonright on input line 67.
LaTeX Font Info: Redeclaring math symbol \downharpoonright on input line 69.
LaTeX Font Info: Redeclaring math symbol \upharpoonleft on input line 70.
LaTeX Font Info: Redeclaring math symbol \downharpoonleft on input line 71.
LaTeX Font Info: Redeclaring math symbol \rightarrowtail on input line 72.
LaTeX Font Info: Redeclaring math symbol \leftarrowtail on input line 73.
LaTeX Font Info: Redeclaring math symbol \leftrightarrows on input line 74.
LaTeX Font Info: Redeclaring math symbol \rightleftarrows on input line 75.
LaTeX Font Info: Redeclaring math symbol \Lsh on input line 76.
LaTeX Font Info: Redeclaring math symbol \Rsh on input line 77.
LaTeX Font Info: Redeclaring math symbol \leftrightsquigarrow on input line 79.
LaTeX Font Info: Redeclaring math symbol \looparrowleft on input line 80.
LaTeX Font Info: Redeclaring math symbol \looparrowright on input line 81.
LaTeX Font Info: Redeclaring math symbol \circeq on input line 82.
LaTeX Font Info: Redeclaring math symbol \succsim on input line 83.
LaTeX Font Info: Redeclaring math symbol \gtrsim on input line 84.
LaTeX Font Info: Redeclaring math symbol \gtrapprox on input line 85.
LaTeX Font Info: Redeclaring math symbol \multimap on input line 86.
LaTeX Font Info: Redeclaring math symbol \therefore on input line 87.
LaTeX Font Info: Redeclaring math symbol \because on input line 88.
LaTeX Font Info: Redeclaring math symbol \doteqdot on input line 89.
LaTeX Font Info: Redeclaring math symbol \triangleq on input line 91.
LaTeX Font Info: Redeclaring math symbol \precsim on input line 92.
LaTeX Font Info: Redeclaring math symbol \lesssim on input line 93.
LaTeX Font Info: Redeclaring math symbol \lessapprox on input line 94.
LaTeX Font Info: Redeclaring math symbol \eqslantless on input line 95.
LaTeX Font Info: Redeclaring math symbol \eqslantgtr on input line 96.
LaTeX Font Info: Redeclaring math symbol \curlyeqprec on input line 97.
LaTeX Font Info: Redeclaring math symbol \curlyeqsucc on input line 98.
LaTeX Font Info: Redeclaring math symbol \preccurlyeq on input line 99.
LaTeX Font Info: Redeclaring math symbol \leqq on input line 100.
LaTeX Font Info: Redeclaring math symbol \leqslant on input line 101.
LaTeX Font Info: Redeclaring math symbol \lessgtr on input line 102.
LaTeX Font Info: Redeclaring math symbol \backprime on input line 103.
LaTeX Font Info: Redeclaring math symbol \risingdotseq on input line 104.
LaTeX Font Info: Redeclaring math symbol \fallingdotseq on input line 105.
LaTeX Font Info: Redeclaring math symbol \succcurlyeq on input line 106.
LaTeX Font Info: Redeclaring math symbol \geqq on input line 107.
LaTeX Font Info: Redeclaring math symbol \geqslant on input line 108.
LaTeX Font Info: Redeclaring math symbol \gtrless on input line 109.
LaTeX Font Info: Redeclaring math symbol \bigstar on input line 117.
LaTeX Font Info: Redeclaring math symbol \between on input line 118.
LaTeX Font Info: Redeclaring math symbol \blacktriangledown on input line 119.
LaTeX Font Info: Redeclaring math symbol \blacktriangleright on input line 120.
LaTeX Font Info: Redeclaring math symbol \blacktriangleleft on input line 121.
LaTeX Font Info: Redeclaring math symbol \vartriangle on input line 122.
LaTeX Font Info: Redeclaring math symbol \blacktriangle on input line 123.
LaTeX Font Info: Redeclaring math symbol \triangledown on input line 124.
LaTeX Font Info: Redeclaring math symbol \eqcirc on input line 125.
LaTeX Font Info: Redeclaring math symbol \lesseqgtr on input line 126.
LaTeX Font Info: Redeclaring math symbol \gtreqless on input line 127.
LaTeX Font Info: Redeclaring math symbol \lesseqqgtr on input line 128.
LaTeX Font Info: Redeclaring math symbol \gtreqqless on input line 129.
LaTeX Font Info: Redeclaring math symbol \Rrightarrow on input line 130.
LaTeX Font Info: Redeclaring math symbol \Lleftarrow on input line 131.
LaTeX Font Info: Redeclaring math symbol \veebar on input line 132.
LaTeX Font Info: Redeclaring math symbol \barwedge on input line 133.
LaTeX Font Info: Redeclaring math symbol \doublebarwedge on input line 134.
LaTeX Font Info: Redeclaring math symbol \measuredangle on input line 137.
LaTeX Font Info: Redeclaring math symbol \sphericalangle on input line 138.
LaTeX Font Info: Redeclaring math symbol \varpropto on input line 139.
LaTeX Font Info: Redeclaring math symbol \smallsmile on input line 140.
LaTeX Font Info: Redeclaring math symbol \smallfrown on input line 141.
LaTeX Font Info: Redeclaring math symbol \Subset on input line 142.
LaTeX Font Info: Redeclaring math symbol \Supset on input line 143.
LaTeX Font Info: Redeclaring math symbol \Cup on input line 144.
LaTeX Font Info: Redeclaring math symbol \Cap on input line 146.
LaTeX Font Info: Redeclaring math symbol \curlywedge on input line 148.
LaTeX Font Info: Redeclaring math symbol \curlyvee on input line 149.
LaTeX Font Info: Redeclaring math symbol \leftthreetimes on input line 150.
LaTeX Font Info: Redeclaring math symbol \rightthreetimes on input line 151.
LaTeX Font Info: Redeclaring math symbol \subseteqq on input line 152.
LaTeX Font Info: Redeclaring math symbol \supseteqq on input line 153.
LaTeX Font Info: Redeclaring math symbol \bumpeq on input line 154.
LaTeX Font Info: Redeclaring math symbol \Bumpeq on input line 155.
LaTeX Font Info: Redeclaring math symbol \lll on input line 156.
LaTeX Font Info: Redeclaring math symbol \ggg on input line 158.
LaTeX Font Info: Redeclaring math symbol \circledS on input line 160.
LaTeX Font Info: Redeclaring math symbol \pitchfork on input line 161.
LaTeX Font Info: Redeclaring math symbol \dotplus on input line 162.
LaTeX Font Info: Redeclaring math symbol \backsim on input line 163.
LaTeX Font Info: Redeclaring math symbol \backsimeq on input line 164.
LaTeX Font Info: Redeclaring math symbol \complement on input line 165.
LaTeX Font Info: Redeclaring math symbol \intercal on input line 166.
LaTeX Font Info: Redeclaring math symbol \circledcirc on input line 167.
LaTeX Font Info: Redeclaring math symbol \circledast on input line 168.
LaTeX Font Info: Redeclaring math symbol \circleddash on input line 169.
LaTeX Font Info: Redeclaring math symbol \lvertneqq on input line 171.
LaTeX Font Info: Redeclaring math symbol \gvertneqq on input line 172.
LaTeX Font Info: Redeclaring math symbol \nleq on input line 173.
LaTeX Font Info: Redeclaring math symbol \ngeq on input line 174.
LaTeX Font Info: Redeclaring math symbol \nless on input line 175.
LaTeX Font Info: Redeclaring math symbol \ngtr on input line 176.
LaTeX Font Info: Redeclaring math symbol \nprec on input line 177.
LaTeX Font Info: Redeclaring math symbol \nsucc on input line 178.
LaTeX Font Info: Redeclaring math symbol \lneqq on input line 179.
LaTeX Font Info: Redeclaring math symbol \gneqq on input line 180.
LaTeX Font Info: Redeclaring math symbol \nleqslant on input line 181.
LaTeX Font Info: Redeclaring math symbol \ngeqslant on input line 182.
LaTeX Font Info: Redeclaring math symbol \lneq on input line 183.
LaTeX Font Info: Redeclaring math symbol \gneq on input line 184.
LaTeX Font Info: Redeclaring math symbol \npreceq on input line 185.
LaTeX Font Info: Redeclaring math symbol \nsucceq on input line 186.
LaTeX Font Info: Redeclaring math symbol \precnsim on input line 187.
LaTeX Font Info: Redeclaring math symbol \succnsim on input line 188.
LaTeX Font Info: Redeclaring math symbol \lnsim on input line 189.
LaTeX Font Info: Redeclaring math symbol \gnsim on input line 190.
LaTeX Font Info: Redeclaring math symbol \nleqq on input line 191.
LaTeX Font Info: Redeclaring math symbol \ngeqq on input line 192.
LaTeX Font Info: Redeclaring math symbol \precneqq on input line 193.
LaTeX Font Info: Redeclaring math symbol \succneqq on input line 194.
LaTeX Font Info: Redeclaring math symbol \precnapprox on input line 195.
LaTeX Font Info: Redeclaring math symbol \succnapprox on input line 196.
LaTeX Font Info: Redeclaring math symbol \lnapprox on input line 197.
LaTeX Font Info: Redeclaring math symbol \gnapprox on input line 198.
LaTeX Font Info: Redeclaring math symbol \nsim on input line 199.
LaTeX Font Info: Redeclaring math symbol \ncong on input line 200.
LaTeX Font Info: Redeclaring math symbol \diagup on input line 201.
LaTeX Font Info: Redeclaring math symbol \diagdown on input line 202.
LaTeX Font Info: Redeclaring math symbol \varsubsetneq on input line 203.
LaTeX Font Info: Redeclaring math symbol \varsupsetneq on input line 204.
LaTeX Font Info: Redeclaring math symbol \nsubseteqq on input line 205.
LaTeX Font Info: Redeclaring math symbol \nsupseteqq on input line 206.
LaTeX Font Info: Redeclaring math symbol \subsetneqq on input line 207.
LaTeX Font Info: Redeclaring math symbol \supsetneqq on input line 208.
LaTeX Font Info: Redeclaring math symbol \varsubsetneqq on input line 209.
LaTeX Font Info: Redeclaring math symbol \varsupsetneqq on input line 210.
LaTeX Font Info: Redeclaring math symbol \subsetneq on input line 211.
LaTeX Font Info: Redeclaring math symbol \supsetneq on input line 212.
LaTeX Font Info: Redeclaring math symbol \nsubseteq on input line 213.
LaTeX Font Info: Redeclaring math symbol \nsupseteq on input line 214.
LaTeX Font Info: Redeclaring math symbol \nparallel on input line 215.
LaTeX Font Info: Redeclaring math symbol \nmid on input line 216.
LaTeX Font Info: Redeclaring math symbol \nshortmid on input line 217.
LaTeX Font Info: Redeclaring math symbol \nshortparallel on input line 218.
LaTeX Font Info: Redeclaring math symbol \nvdash on input line 219.
LaTeX Font Info: Redeclaring math symbol \nVdash on input line 220.
LaTeX Font Info: Redeclaring math symbol \nvDash on input line 221.
LaTeX Font Info: Redeclaring math symbol \nVDash on input line 222.
LaTeX Font Info: Redeclaring math symbol \ntrianglerighteq on input line 223.
LaTeX Font Info: Redeclaring math symbol \ntrianglelefteq on input line 224.
LaTeX Font Info: Redeclaring math symbol \ntriangleleft on input line 225.
LaTeX Font Info: Redeclaring math symbol \ntriangleright on input line 226.
LaTeX Font Info: Redeclaring math symbol \nleftarrow on input line 227.
LaTeX Font Info: Redeclaring math symbol \nrightarrow on input line 228.
LaTeX Font Info: Redeclaring math symbol \nLeftarrow on input line 229.
LaTeX Font Info: Redeclaring math symbol \nRightarrow on input line 230.
LaTeX Font Info: Redeclaring math symbol \nLeftrightarrow on input line 231.
LaTeX Font Info: Redeclaring math symbol \nleftrightarrow on input line 232.
LaTeX Font Info: Redeclaring math symbol \divideontimes on input line 233.
LaTeX Font Info: Redeclaring math symbol \varnothing on input line 234.
LaTeX Font Info: Redeclaring math symbol \nexists on input line 235.
LaTeX Font Info: Redeclaring math symbol \Finv on input line 236.