-
Notifications
You must be signed in to change notification settings - Fork 3
/
TempExample.log
2592 lines (2452 loc) · 97.8 KB
/
TempExample.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.14159265-2.6-0.99999 (TeX Live 2018) (preloaded format=xelatex 2018.5.1) 2 MAY 2018 23:48
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**TempExample.tex
(./TempExample.tex
LaTeX2e <2018-04-01> patch level 3
Babel <3.19> and hyphenation patterns for 84 language(s) loaded.
(./aaas.cls
Document Class: aaas 2017/07/07 v0.1 The LaTeX template for Acta Aeronautica et
Astronautica Sinica
Document Class `aaas' v0.1 by Htallone (2018/04)
(/usr/local/texlive/2018/texmf-dist/tex/latex/ctex/ctexart.cls
(/usr/local/texlive/2018/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2018/03/05 L3 programming layer (loader)
(/usr/local/texlive/2018/texmf-dist/tex/latex/l3kernel/expl3-code.tex
Package: expl3 2018/03/05 L3 programming layer (code)
\c_max_int=\count80
\l_tmpa_int=\count81
\l_tmpb_int=\count82
\g_tmpa_int=\count83
\g_tmpb_int=\count84
\g__intarray_font_int=\count85
\g__prg_map_int=\count86
\c_log_iow=\count87
\l_iow_line_count_int=\count88
\l__iow_line_target_int=\count89
\l__iow_one_indent_int=\count90
\l__iow_indent_int=\count91
\c_zero_dim=\dimen102
\c_max_dim=\dimen103
\l_tmpa_dim=\dimen104
\l_tmpb_dim=\dimen105
\g_tmpa_dim=\dimen106
\g_tmpb_dim=\dimen107
\c_zero_skip=\skip41
\c_max_skip=\skip42
\l_tmpa_skip=\skip43
\l_tmpb_skip=\skip44
\g_tmpa_skip=\skip45
\g_tmpb_skip=\skip46
\c_zero_muskip=\muskip10
\c_max_muskip=\muskip11
\l_tmpa_muskip=\muskip12
\l_tmpb_muskip=\muskip13
\g_tmpa_muskip=\muskip14
\g_tmpb_muskip=\muskip15
\l_keys_choice_int=\count92
\c__fp_leading_shift_int=\count93
\c__fp_middle_shift_int=\count94
\c__fp_trailing_shift_int=\count95
\c__fp_big_leading_shift_int=\count96
\c__fp_big_middle_shift_int=\count97
\c__fp_big_trailing_shift_int=\count98
\c__fp_Bigg_leading_shift_int=\count99
\c__fp_Bigg_middle_shift_int=\count100
\c__fp_Bigg_trailing_shift_int=\count101
\l__sort_length_int=\count102
\l__sort_min_int=\count103
\l__sort_top_int=\count104
\l__sort_max_int=\count105
\l__sort_true_max_int=\count106
\l__sort_block_int=\count107
\l__sort_begin_int=\count108
\l__sort_end_int=\count109
\l__sort_A_int=\count110
\l__sort_B_int=\count111
\l__sort_C_int=\count112
\l__tl_build_start_index_int=\count113
\l__tl_build_index_int=\count114
\l__tl_analysis_normal_int=\count115
\l__tl_analysis_index_int=\count116
\l__tl_analysis_nesting_int=\count117
\l__tl_analysis_type_int=\count118
\l__regex_internal_a_int=\count119
\l__regex_internal_b_int=\count120
\l__regex_internal_c_int=\count121
\l__regex_balance_int=\count122
\l__regex_group_level_int=\count123
\l__regex_mode_int=\count124
\c__regex_cs_in_class_mode_int=\count125
\c__regex_cs_mode_int=\count126
\l__regex_catcodes_int=\count127
\l__regex_default_catcodes_int=\count128
\c__regex_catcode_L_int=\count129
\c__regex_catcode_O_int=\count130
\c__regex_catcode_A_int=\count131
\c__regex_all_catcodes_int=\count132
\l__regex_show_lines_int=\count133
\l__regex_min_state_int=\count134
\l__regex_max_state_int=\count135
\l__regex_left_state_int=\count136
\l__regex_right_state_int=\count137
\l__regex_capturing_group_int=\count138
\l__regex_min_pos_int=\count139
\l__regex_max_pos_int=\count140
\l__regex_curr_pos_int=\count141
\l__regex_start_pos_int=\count142
\l__regex_success_pos_int=\count143
\l__regex_curr_char_int=\count144
\l__regex_curr_catcode_int=\count145
\l__regex_last_char_int=\count146
\l__regex_case_changed_char_int=\count147
\l__regex_curr_state_int=\count148
\l__regex_step_int=\count149
\l__regex_min_active_int=\count150
\l__regex_max_active_int=\count151
\l__regex_replacement_csnames_int=\count152
\l__regex_match_count_int=\count153
\l__regex_min_submatch_int=\count154
\l__regex_submatch_int=\count155
\l__regex_zeroth_submatch_int=\count156
\g__regex_trace_regex_int=\count157
\c_empty_box=\box26
\l_tmpa_box=\box27
\l_tmpb_box=\box28
\g_tmpa_box=\box29
\g_tmpb_box=\box30
\l__box_top_dim=\dimen108
\l__box_bottom_dim=\dimen109
\l__box_left_dim=\dimen110
\l__box_right_dim=\dimen111
\l__box_top_new_dim=\dimen112
\l__box_bottom_new_dim=\dimen113
\l__box_left_new_dim=\dimen114
\l__box_right_new_dim=\dimen115
\l__box_internal_box=\box31
\l__coffin_internal_box=\box32
\l__coffin_internal_dim=\dimen116
\l__coffin_offset_x_dim=\dimen117
\l__coffin_offset_y_dim=\dimen118
\l__coffin_x_dim=\dimen119
\l__coffin_y_dim=\dimen120
\l__coffin_x_prime_dim=\dimen121
\l__coffin_y_prime_dim=\dimen122
\c_empty_coffin=\box33
\l__coffin_aligned_coffin=\box34
\l__coffin_aligned_internal_coffin=\box35
\l_tmpa_coffin=\box36
\l_tmpb_coffin=\box37
\l__coffin_display_coffin=\box38
\l__coffin_display_coord_coffin=\box39
\l__coffin_display_pole_coffin=\box40
\l__coffin_display_offset_dim=\dimen123
\l__coffin_display_x_dim=\dimen124
\l__coffin_display_y_dim=\dimen125
\l__coffin_bounding_shift_dim=\dimen126
\l__coffin_left_corner_dim=\dimen127
\l__coffin_right_corner_dim=\dimen128
\l__coffin_bottom_corner_dim=\dimen129
\l__coffin_top_corner_dim=\dimen130
\l__coffin_scaled_total_height_dim=\dimen131
\l__coffin_scaled_width_dim=\dimen132
)
(/usr/local/texlive/2018/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def
File: l3xdvidpfmx.def 2017/03/18 v L3 Experimental driver: xdvipdfmx
\g__driver_image_int=\count158
))
Document Class: ctexart 2018/01/28 v2.4.12 Chinese adapter for class article (C
TEX)
(/usr/local/texlive/2018/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
Package: xparse 2018/02/21 L3 Experimental document command parser
\l__xparse_current_arg_int=\count159
\g__xparse_grabber_int=\count160
\l__xparse_m_args_int=\count161
\l__xparse_mandatory_args_int=\count162
\l__xparse_v_nesting_int=\count163
)
(/usr/local/texlive/2018/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
Package: l3keys2e 2018/02/21 LaTeX2e option processing using LaTeX3 keys
)
\g__file_internal_ior=\read1
(/usr/local/texlive/2018/texmf-dist/tex/latex/ctex/ctexhook.sty
Package: ctexhook 2018/01/28 v2.4.12 Document and package hooks (CTEX)
)
(/usr/local/texlive/2018/texmf-dist/tex/latex/ctex/ctexpatch.sty
Package: ctexpatch 2018/01/28 v2.4.12 Patching commands (CTEX)
)
(/usr/local/texlive/2018/texmf-dist/tex/latex/base/fix-cm.sty
Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX
(/usr/local/texlive/2018/texmf-dist/tex/latex/base/ts1enc.def
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
))
(/usr/local/texlive/2018/texmf-dist/tex/latex/ms/everysel.sty
Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS)
)
\l__ctex_tmp_int=\count164
\l__ctex_tmp_box=\box41
\l__ctex_tmp_dim=\dimen133
\g__ctex_font_size_flag=\count165
(/usr/local/texlive/2018/texmf-dist/tex/latex/ctex/config/ctexopts.cfg
File: ctexopts.cfg 2018/01/28 v2.4.12 Option configuration file (CTEX)
)
(/usr/local/texlive/2018/texmf-dist/tex/latex/base/article.cls
Document Class: article 2014/09/29 v1.4h Standard LaTeX document class
(/usr/local/texlive/2018/texmf-dist/tex/latex/base/size10.clo
File: size10.clo 2014/09/29 v1.4h Standard LaTeX file (size option)
)
\c@part=\count166
\c@section=\count167
\c@subsection=\count168
\c@subsubsection=\count169
\c@paragraph=\count170
\c@subparagraph=\count171
\c@figure=\count172
\c@table=\count173
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen134
)
(/usr/local/texlive/2018/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def
File: ctex-engine-xetex.def 2018/01/28 v2.4.12 XeLaTeX adapter (CTEX)
(/usr/local/texlive/2018/texmf-dist/tex/xelatex/xecjk/xeCJK.sty
Package: xeCJK 2018/04/07 v3.7.0 Typesetting CJK scripts with XeLaTeX
(/usr/local/texlive/2018/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.st
y
Package: xtemplate 2018/02/21 L3 Experimental prototype document functions
\l__xtemplate_tmp_dim=\dimen135
\l__xtemplate_tmp_int=\count174
\l__xtemplate_tmp_muskip=\muskip16
\l__xtemplate_tmp_skip=\skip49
)
\l__xeCJK_tmp_int=\count175
\l__xeCJK_tmp_box=\box42
\l__xeCJK_tmp_dim=\dimen136
\l__xeCJK_tmp_skip=\skip50
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKShipoutHook with sig. '' on line 150.
.................................................
\g__xeCJK_space_factor_int=\count176
\l__xeCJK_begin_int=\count177
\l__xeCJK_end_int=\count178
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \makexeCJKactive with sig. '' on line 396.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \makexeCJKinactive with sig. '' on line 398.
.................................................
\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
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKDeclareCharClass with sig. 's>{\TrimSpaces }mm' on
. line 580.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \__xeCJK_set_char_class_aux:Nnw with sig.
. 'm>{\SplitArgument {1}{->}}m' on line 601.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \normalspacedchars with sig. 'm' on line 647.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKResetPunctClass with sig. '' on line 658.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKResetCharClass with sig. '' on line 670.
.................................................
\l__xeCJK_last_skip=\skip51
\g__xeCJK_node_int=\count179
\c__xeCJK_CJK_node_dim=\dimen137
\c__xeCJK_CJK-space_node_dim=\dimen138
\c__xeCJK_default_node_dim=\dimen139
\c__xeCJK_default-space_node_dim=\dimen140
\c__xeCJK_CJK-widow_node_dim=\dimen141
\c__xeCJK_normalspace_node_dim=\dimen142
\l__xeCJK_ccglue_skip=\skip52
\l__xeCJK_ecglue_skip=\skip53
\l__xeCJK_punct_kern_skip=\skip54
\l__xeCJK_last_penalty_int=\count180
\l__xeCJK_last_bound_dim=\dimen143
\l__xeCJK_last_kern_dim=\dimen144
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKnobreak with sig. '' on line 1889.
.................................................
\l__xeCJK_widow_penalty_int=\count181
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKDeclareSubCJKBlock with sig. 's>{\TrimSpaces }mm' on
. line 2084.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKCancelSubCJKBlock with sig. 'sm' on line 2095.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKRestoreSubCJKBlock with sig. 'sm' on line 2104.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKsetwidth with sig. 'smm' on line 2202.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKsetkern with sig. 'mmm' on line 2206.
.................................................
.................................................
. xtemplate info: "declare-object-type"
.
. Declaring object type 'xeCJK/punctuation' taking 0 argument(s) on line 2362.
.................................................
\l__xeCJK_fixed_punct_width_dim=\dimen145
\l__xeCJK_mixed_punct_width_dim=\dimen146
\l__xeCJK_middle_punct_width_dim=\dimen147
\l__xeCJK_fixed_margin_width_dim=\dimen148
\l__xeCJK_mixed_margin_width_dim=\dimen149
\l__xeCJK_middle_margin_width_dim=\dimen150
\l__xeCJK_bound_punct_width_dim=\dimen151
\l__xeCJK_bound_margin_width_dim=\dimen152
\l__xeCJK_margin_minimum_dim=\dimen153
\l__xeCJK_kerning_total_width_dim=\dimen154
\l__xeCJK_same_align_margin_dim=\dimen155
\l__xeCJK_different_align_margin_dim=\dimen156
\l__xeCJK_kerning_margin_width_dim=\dimen157
\l__xeCJK_kerning_margin_minimum_dim=\dimen158
\l__xeCJK_bound_dim=\dimen159
\l__xeCJK_reverse_bound_dim=\dimen160
\l__xeCJK_minimum_bound_dim=\dimen161
\l__xeCJK_kerning_margin_dim=\dimen162
\l__xeCJK_original_margin_dim=\dimen163
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKDeclarePunctStyle with sig. '>{\TrimSpaces }mm' on
. line 2942.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKEditPunctStyle with sig. '>{\TrimSpaces }mm' on line
. 2955.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setCJKfallbackfamilyfont with sig. 'mom' on line 3059.
.................................................
\g__xeCJK_family_int=\count182
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \CJKfamily with sig. 't+t-m' on line 3493.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \__xeCJK_gobble_CJKfamily:wn with sig. 't+t-m' on line
. 3558.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \__xeCJK_post_arg:w with sig. 'mmmO{}' on line 3618.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setCJKmainfont with sig. 'om' on line 3624.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setCJKsansfont with sig. 'om' on line 3631.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setCJKmonofont with sig. 'om' on line 3637.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setCJKfamilyfont with sig. 'mom' on line 3648.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newCJKfontfamily with sig. 'omom' on line 3658.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \CJKfontspec with sig. 'om' on line 3664.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \defaultCJKfontfeatures with sig. 'm' on line 3687.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \addCJKfontfeatures with sig. 'sO{}m' on line 3693.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setCJKmathfont with sig. 'om' on line 3870.
.................................................
\l__xeCJK_fam_int=\count183
\g__xeCJK_fam_allocation_int=\count184
\l__xeCJK_verb_case_int=\count185
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKVerbAddon with sig. '' on line 4117.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKOffVerbAddon with sig. '' on line 4121.
.................................................
\l__xeCJK_verb_exspace_skip=\skip55
(/usr/local/texlive/2018/texmf-dist/tex/latex/fontspec/fontspec.sty
Package: fontspec 2017/11/09 v2.6g Font selection for XeLaTeX and LuaLaTeX
(/usr/local/texlive/2018/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty
Package: fontspec-xetex 2017/11/09 v2.6g Font selection for XeLaTeX and LuaLaTe
X
\l__fontspec_script_int=\count186
\l__fontspec_language_int=\count187
\l__fontspec_strnum_int=\count188
\l__fontspec_tmp_int=\count189
\l__fontspec_em_int=\count190
\l__fontspec_emdef_int=\count191
\l__fontspec_strong_int=\count192
\l__fontspec_strongdef_int=\count193
\l__fontspec_tmpa_dim=\dimen164
\l__fontspec_tmpb_dim=\dimen165
\l__fontspec_tmpc_dim=\dimen166
(/usr/local/texlive/2018/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2017/04/05 v2.0i Standard LaTeX package
(/usr/local/texlive/2018/texmf-dist/tex/latex/base/tuenc.def
File: tuenc.def 2017/04/05 v2.0i Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding TU on input line 82.
))
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \fontspec with sig. 'O{}mO{}' on line 542.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmainfont with sig. 'O{}mO{}' on line 546.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setsansfont with sig. 'O{}mO{}' on line 550.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmonofont with sig. 'O{}mO{}' on line 554.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmathrm with sig. 'O{}mO{}' on line 558.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setboldmathrm with sig. 'O{}mO{}' on line 562.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmathsf with sig. 'O{}mO{}' on line 566.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmathtt with sig. 'O{}mO{}' on line 570.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setromanfont with sig. 'O{}mO{}' on line 574.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontfamily with sig. 'mO{}mO{}' on line 578.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontface with sig. 'mO{}mO{}' on line 582.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \defaultfontfeatures with sig. 't+om' on line 586.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \addfontfeatures with sig. 'm' on line 590.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \addfontfeature with sig. 'm' on line 594.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontfeature with sig. 'mm' on line 598.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newAATfeature with sig. 'mmmm' on line 602.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newopentypefeature with sig. 'mmm' on line 606.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newICUfeature with sig. 'mmm' on line 610.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \aliasfontfeature with sig. 'mm' on line 614.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \aliasfontfeatureoption with sig. 'mmm' on line 618.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontscript with sig. 'mm' on line 622.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontlanguage with sig. 'mm' on line 626.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \DeclareFontsExtensions with sig. 'm' on line 630.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \IfFontFeatureActiveTF with sig. 'mmm' on line 634.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \EncodingCommand with sig. 'mO{}m' on line 3632.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \EncodingAccent with sig. 'mm' on line 3638.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \EncodingSymbol with sig. 'mm' on line 3644.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \EncodingComposite with sig. 'mmm' on line 3650.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \EncodingCompositeCommand with sig. 'mmm' on line 3656.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \DeclareUnicodeEncoding with sig. 'mm' on line 3681.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \UndeclareSymbol with sig. 'm' on line 3687.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \UndeclareAccent with sig. 'm' on line 3693.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \UndeclareCommand with sig. 'm' on line 3699.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \UndeclareComposite with sig. 'mm' on line 3706.
.................................................
(/usr/local/texlive/2018/texmf-dist/tex/latex/fontspec/fontspec.cfg)
LaTeX Info: Redefining \itshape on input line 3891.
LaTeX Info: Redefining \slshape on input line 3896.
LaTeX Info: Redefining \scshape on input line 3901.
LaTeX Info: Redefining \upshape on input line 3906.
LaTeX Info: Redefining \em on input line 3936.
LaTeX Info: Redefining \emph on input line 3961.
LaTeX Info: Redefining \- on input line 4015.
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \oldstylenums with sig. 'm' on line 4110.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \liningnums with sig. 'm' on line 4114.
.................................................
))
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKsetup with sig. '+m' on line 4422.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKsetemboldenfactor with sig. 'm' on line 4424.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKsetslantfactor with sig. 'm' on line 4426.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \punctstyle with sig. 'm' on line 4427.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKplainchr with sig. '' on line 4428.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \CJKsetecglue with sig. 'm' on line 4429.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \CJKspace with sig. '' on line 4431.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \CJKnospace with sig. '' on line 4432.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKallowbreakbetweenpuncts with sig. '' on line 4434.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKnobreakbetweenpuncts with sig. '' on line 4436.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKenablefallback with sig. '' on line 4438.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKdisablefallback with sig. '' on line 4440.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKsetcharclass with sig. 'mmm' on line 4445.
.................................................
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \fontfamily with sig. 'm' on line 4628.
.................................................
(/usr/local/texlive/2018/texmf-dist/tex/xelatex/xecjk/xeCJK.cfg
File: xeCJK.cfg 2018/04/07 v3.7.0 Configuration file for xeCJK package
))
(/usr/local/texlive/2018/texmf-dist/tex/xelatex/xecjk/xeCJKfntef.sty
Package: xeCJKfntef 2018/04/07 v3.7.0 xeCJK font effect
(/usr/local/texlive/2018/texmf-dist/tex/generic/ulem/ulem.sty
\UL@box=\box43
\UL@hyphenbox=\box44
\UL@skip=\skip56
\UL@hook=\toks14
\UL@height=\dimen167
\UL@pe=\count194
\UL@pixel=\dimen168
\ULC@box=\box45
Package: ulem 2012/05/18
\ULdepth=\dimen169
)
(/usr/local/texlive/2018/texmf-dist/tex/latex/environ/environ.sty
Package: environ 2014/05/04 v0.3 A new way to define environments
(/usr/local/texlive/2018/texmf-dist/tex/latex/trimspaces/trimspaces.sty
Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
)
\@envbody=\toks15
)
(/usr/local/texlive/2018/texmf-dist/tex/latex/cjk/texinput/CJKfntef.sty
Package: CJKfntef 2015/04/18 4.8.4
\CJK@fntefSkip=\skip57
\CJK@nest=\count195
\CJK@fntefDimen=\dimen170
\CJK@underdotBox=\box46
\CJK@ULbox=\box47
\CJK@underanyskip=\dimen171
)
\l__xeCJK_space_skip=\skip58
\c__xeCJK_ulem-begin_node_dim=\dimen172
\c__xeCJK_null_box=\box48
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \xeCJKfntefon with sig. 'st-so' on line 657.
.................................................
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \CJKunderline with sig. 'st-so' on line 673.
.................................................
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \varCJKunderline with sig. '' on line 675.
.................................................
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \CJKunderwave with sig. 'st-so' on line 685.
.................................................
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \CJKunderdblline with sig. 'st-so' on line 709.
.................................................
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \CJKsout with sig. 'st-so' on line 728.
.................................................
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \CJKxout with sig. 'st-so' on line 745.
.................................................
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \CJKunderanyline with sig. 'st-somm' on line 766.
.................................................
\l__xeCJK_fntef_box=\box49
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \CJKunderanysymbol with sig. 'ommm' on line 940.
.................................................
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \CJKunderdot with sig. 'om' on line 949.
.................................................
\l__xeCJK_under_symbol_box=\box50
.................................................
. LaTeX info: "xparse/redefine-environment"
.
. Redefining environment 'CJKfilltwosides' with sig. 'O{c}m' on line 1053.
.................................................
\c__xeCJK_filll_skip=\skip59
)
\ccwd=\dimen173
\l__ctex_ccglue_skip=\skip60
)
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \ctexset with sig. '' on line 388.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \CTEXsetup with sig. '+o>{\TrimSpaces }m' on line 394.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \CTEXoptions with sig. '+o' on line 400.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \CTEXsetfont with sig. '' on line 418.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \ziju with sig. 'm' on line 490.
.................................................
\l__ctex_ziju_dim=\dimen174
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \CTEXindent with sig. '' on line 531.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \CTEXnoindent with sig. '' on line 537.
.................................................
(/usr/local/texlive/2018/texmf-dist/tex/latex/zhnumber/zhnumber.sty
Package: zhnumber 2018/01/28 v2.6 Typesetting numbers with Chinese glyphs
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \zhnumber with sig. '+o+m' on line 50.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \zhnumberwithoptions with sig. '+m+m' on line 57.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \zhnum with sig. '+o+m' on line 111.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \zhnumwithoptions with sig. '+m+m' on line 118.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \zhdig with sig. '+o+m' on line 295.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \zhdigwithoptions with sig. '+m+m' on line 302.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \zhdigits with sig. '+s+o+m' on line 316.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \zhdigitswithoptions with sig. '+m+m+m' on line 323.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \zhdate with sig. '+s+m' on line 382.
.................................................
\l__zhnum_scale_int=\count196
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \zhnumExtendScaleMap with sig. '>{\TrimSpaces }+o+m' on
. line 504.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \zhnumsetup with sig. '+m' on line 934.
.................................................
(/usr/local/texlive/2018/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg
File: zhnumber-utf8.cfg 2018/01/28 v2.6 Chinese numerals with UTF8 encoding
))
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \CTEXnumber with sig. 'mm' on line 554.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \CTEXdigits with sig. 'mm' on line 556.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \ctex_assign_heading_name:nn with sig. 'm>{\SplitArgument
. {\c_one }{,}}+m' on line 680.
.................................................
\l__ctex_heading_skip=\skip61
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \partmark with sig. 'm' on line 711.
.................................................
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \refstepcounter with sig. 'm' on line 1201.
.................................................
(/usr/local/texlive/2018/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese-a
rticle.def
File: ctex-scheme-chinese-article.def 2018/01/28 v2.4.12 Chinese scheme for art
icle (CTEX)
(/usr/local/texlive/2018/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg
File: ctex-name-utf8.cfg 2018/01/28 v2.4.12 Caption with encoding UTF8 (CTEX)
))
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \zihao with sig. 'm' on line 1204.
.................................................
(/usr/local/texlive/2018/texmf-dist/tex/latex/ctex/ctex-c5size.clo
File: ctex-c5size.clo 2018/01/28 v2.4.12 c5size option (CTEX)
)
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \CTeX with sig. '' on line 1308.
.................................................
(/usr/local/texlive/2018/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-fandol.
def
File: ctex-fontset-fandol.def 2018/01/28 v2.4.12 Fandol fonts definition (CTEX)
*************************************************
* fontspec warning: "script-not-exist"
*
* Font 'FandolSong-Regular' does not contain script 'CJK'.
*************************************************
\g__fontspec_family_FandolSong-Regular_int=\count197
.................................................
. fontspec info: "defining-font"
.
. Font family 'FandolSong-Regular(0)' created for font 'FandolSong-Regular'
. with options
. [Script={CJK},Extension={.otf},BoldFont={FandolSong-Bold},ItalicFont={FandolK