-
Notifications
You must be signed in to change notification settings - Fork 35
/
myThesis.log
1878 lines (1750 loc) · 69.5 KB
/
myThesis.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.99991 (TeX Live 2014) (preloaded format=xelatex 2014.8.31) 9 APR 2016 12:32
entering extended mode
restricted \write18 enabled.
file:line:error style messages enabled.
%&-line parsing enabled.
**myThesis.tex
(./myThesis.tex
LaTeX2e <2014/05/01>
Babel <3.9k> and hyphenation patterns for 78 languages loaded.
(./sty/njustThesis.cls
Document Class: sty/njustThesis 2015/03/15 v2.x njustThesis document class
(/usr/local/texlive/2014/texmf-dist/tex/latex/ctex/ctexbook.cls
Document Class: ctexbook 2011/03/11 v1.02c ctexbook document class
(/usr/local/texlive/2014/texmf-dist/tex/latex/ctex/opt/ctex-common-opts.def)
(/usr/local/texlive/2014/texmf-dist/tex/latex/ctex/opt/ctex-caption-opts.def
\c@CTEX@sectiondepth=\count80
)
(/usr/local/texlive/2014/texmf-dist/tex/latex/ctex/opt/ctex-class-opts.def)
(/usr/local/texlive/texmf-local/tex/latex/ctex/cfg/ctexopts.cfg)
(/usr/local/texlive/2014/texmf-dist/tex/latex/ctex/def/ctex-loadclass.def
(/usr/local/texlive/2014/texmf-dist/tex/latex/base/book.cls
Document Class: book 2007/10/19 v1.4h Standard LaTeX document class
(/usr/local/texlive/2014/texmf-dist/tex/latex/base/bk12.clo
File: bk12.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
)
\c@part=\count81
\c@chapter=\count82
\c@section=\count83
\c@subsection=\count84
\c@subsubsection=\count85
\c@paragraph=\count86
\c@subparagraph=\count87
\c@figure=\count88
\c@table=\count89
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
))
(/usr/local/texlive/2014/texmf-dist/tex/latex/ctex/def/ctex-common.def
(/usr/local/texlive/2014/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2014/05/20 v4814 L3 programming layer (loader)
(/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is not detected.
)
(/usr/local/texlive/2014/texmf-dist/tex/latex/l3kernel/expl3-code.tex
Package: expl3 2014/05/20 v4814 L3 programming layer (code)
L3 Module: l3bootstrap 2014/05/16 v4782 L3 Bootstrap code
(/usr/local/texlive/2014/texmf-dist/tex/latex/etex-pkg/etex.sty
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
\et@xins=\count90
)
L3 Module: l3names 2014/05/04 v4728 L3 Namespace for primitives
L3 Module: l3basics 2014/05/04 v4728 L3 Basic definitions
L3 Module: l3expan 2014/04/30 v4712 L3 Argument expansion
L3 Module: l3tl 2014/05/04 v4728 L3 Token lists
L3 Module: l3seq 2014/04/30 v4712 L3 Sequences and stacks
L3 Module: l3int 2014/05/16 v4776 L3 Integers
\c_max_int=\count91
\l_tmpa_int=\count92
\l_tmpb_int=\count93
\g_tmpa_int=\count94
\g_tmpb_int=\count95
L3 Module: l3quark 2014/05/04 v4728 L3 Quarks
L3 Module: l3prg 2014/05/04 v4728 L3 Control structures
\g__prg_map_int=\count96
L3 Module: l3clist 2014/05/04 v4728 L3 Comma separated lists
L3 Module: l3token 2014/05/04 v4728 L3 Experimental token manipulation
L3 Module: l3prop 2014/04/30 v4712 L3 Property lists
L3 Module: l3msg 2014/05/04 v4728 L3 Messages
L3 Module: l3file 2014/05/05 v4737 L3 File and I/O operations
\l_iow_line_count_int=\count97
\l__iow_target_count_int=\count98
\l__iow_current_line_int=\count99
\l__iow_current_word_int=\count100
\l__iow_current_indentation_int=\count101
L3 Module: l3skip 2014/05/05 v4738 L3 Dimensions and skips
\c_zero_dim=\dimen103
\c_max_dim=\dimen104
\l_tmpa_dim=\dimen105
\l_tmpb_dim=\dimen106
\g_tmpa_dim=\dimen107
\g_tmpb_dim=\dimen108
\c_zero_skip=\skip43
\c_max_skip=\skip44
\l_tmpa_skip=\skip45
\l_tmpb_skip=\skip46
\g_tmpa_skip=\skip47
\g_tmpb_skip=\skip48
\c_zero_muskip=\muskip10
\c_max_muskip=\muskip11
\l_tmpa_muskip=\muskip12
\l_tmpb_muskip=\muskip13
\g_tmpa_muskip=\muskip14
\g_tmpb_muskip=\muskip15
L3 Module: l3keys 2014/05/08 v4753 L3 Key-value interfaces
\g__keyval_level_int=\count102
\l_keys_choice_int=\count103
L3 Module: l3fp 2014/04/30 v4712 L3 Floating points
\c__fp_leading_shift_int=\count104
\c__fp_middle_shift_int=\count105
\c__fp_trailing_shift_int=\count106
\c__fp_big_leading_shift_int=\count107
\c__fp_big_middle_shift_int=\count108
\c__fp_big_trailing_shift_int=\count109
\c__fp_Bigg_leading_shift_int=\count110
\c__fp_Bigg_middle_shift_int=\count111
\c__fp_Bigg_trailing_shift_int=\count112
L3 Module: l3box 2014/05/04 v4728 L3 Experimental boxes
\c_empty_box=\box26
\l_tmpa_box=\box27
\l_tmpb_box=\box28
\g_tmpa_box=\box29
\g_tmpb_box=\box30
L3 Module: l3coffins 2014/05/04 v4728 L3 Coffin code layer
\l__coffin_internal_box=\box31
\l__coffin_internal_dim=\dimen109
\l__coffin_offset_x_dim=\dimen110
\l__coffin_offset_y_dim=\dimen111
\l__coffin_x_dim=\dimen112
\l__coffin_y_dim=\dimen113
\l__coffin_x_prime_dim=\dimen114
\l__coffin_y_prime_dim=\dimen115
\c_empty_coffin=\box32
\l__coffin_aligned_coffin=\box33
\l__coffin_aligned_internal_coffin=\box34
\l_tmpa_coffin=\box35
\l_tmpb_coffin=\box36
\l__coffin_display_coffin=\box37
\l__coffin_display_coord_coffin=\box38
\l__coffin_display_pole_coffin=\box39
\l__coffin_display_offset_dim=\dimen116
\l__coffin_display_x_dim=\dimen117
\l__coffin_display_y_dim=\dimen118
L3 Module: l3color 2014/04/30 v4712 L3 Experimental color support
L3 Module: l3luatex 2014/04/30 v4712 L3 Experimental LuaTeX-specific functions
\g__cctab_allocate_int=\count113
\g__cctab_stack_int=\count114
L3 Module: l3candidates 2014/05/04 v4734 L3 Experimental additions to l3kernel
\l__box_top_dim=\dimen119
\l__box_bottom_dim=\dimen120
\l__box_left_dim=\dimen121
\l__box_right_dim=\dimen122
\l__box_top_new_dim=\dimen123
\l__box_bottom_new_dim=\dimen124
\l__box_left_new_dim=\dimen125
\l__box_right_new_dim=\dimen126
\l__box_internal_box=\box40
\l__coffin_bounding_shift_dim=\dimen127
\l__coffin_left_corner_dim=\dimen128
\l__coffin_right_corner_dim=\dimen129
\l__coffin_bottom_corner_dim=\dimen130
\l__coffin_top_corner_dim=\dimen131
\l__coffin_scaled_total_height_dim=\dimen132
\l__coffin_scaled_width_dim=\dimen133
))
(/usr/local/texlive/2014/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2011/01/03 v2.1 e-TeX tools for LaTeX
\etb@tempcnta=\count115
)
(/usr/local/texlive/2014/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
(/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/05/08 v1.15 key=value parser (DPC)
\KV@toks@=\toks14
)
(/usr/local/texlive/2014/texmf-dist/tex/latex/tools/indentfirst.sty
Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC)
)
(/usr/local/texlive/2014/texmf-dist/tex/latex/base/fix-cm.sty
Package: fix-cm 2014/05/13 v1.1q fixes to LaTeX
(/usr/local/texlive/2014/texmf-dist/tex/latex/base/ts1enc.def
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
))
(/usr/local/texlive/2014/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
\fancy@headwidth=\skip49
\f@ncyO@elh=\skip50
\f@ncyO@erh=\skip51
\f@ncyO@olh=\skip52
\f@ncyO@orh=\skip53
\f@ncyO@elf=\skip54
\f@ncyO@erf=\skip55
\f@ncyO@olf=\skip56
\f@ncyO@orf=\skip57
)
(/usr/local/texlive/2014/texmf-dist/tex/latex/ctex/engine/ctex-xecjk-engine.def
(/usr/local/texlive/2014/texmf-dist/tex/latex/savesym/savesym.sty
Package: savesym 2013/09/02 v1.2 Saves and restores symbols (JG)
)
(/usr/local/texlive/2014/texmf-dist/tex/xelatex/xecjk/xeCJK.sty
Package: xeCJK 2014/05/13 v3.2.12 Typesetting CJK scripts with XeLaTeX
(/usr/local/texlive/2014/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.st
y
Package: xtemplate 2014/05/05 v4740 L3 Experimental prototype document function
s
\l__xtemplate_tmp_dim=\dimen134
\l__xtemplate_tmp_int=\count116
\l__xtemplate_tmp_muskip=\muskip16
\l__xtemplate_tmp_skip=\skip58
Variant \prop_get:NoNTF already defined; not changing it on line 106
Variant \prop_get:NoNT already defined; not changing it on line 107
Variant \prop_get:NoNF already defined; not changing it on line 108
) (/usr/local/texlive/2014/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
Package: xparse 2014/05/05 v4740 L3 Experimental document command parser
\l__xparse_current_arg_int=\count117
\l__xparse_m_args_int=\count118
\l__xparse_mandatory_args_int=\count119
\l__xparse_processor_int=\count120
\l__xparse_v_nesting_int=\count121
)
(/usr/local/texlive/2014/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
Package: l3keys2e 2014/05/05 v4740 LaTeX2e option processing using LaTeX3 keys
) (/usr/local/texlive/2014/texmf-dist/tex/latex/everypage/everypage.sty
Package: everypage 2007/06/20 1.1 Hooks to run on every page
)
\l__xeCJK_tmp_int=\count122
\l__xeCJK_tmp_box=\box41
\l__xeCJK_tmp_dim=\dimen135
\l__xeCJK_tmp_skip=\skip59
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKShipoutHook with arg. spec. '' on line 145.
.................................................
\g__xeCJK_spacefactor_int=\count123
\l__xeCJK_begin_int=\count124
\l__xeCJK_end_int=\count125
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \makexeCJKactive with arg. spec. '' on line 363.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \makexeCJKinactive with arg. spec. '' on line 364.
.................................................
\c__xeCJK_HalfLeft_class_int=\XeTeXintercharclass4
\c__xeCJK_HalfRight_class_int=\XeTeXintercharclass5
\c__xeCJK_NormalSpace_class_int=\XeTeXintercharclass6
\c__xeCJK_IVS_class_int=\XeTeXintercharclass7
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKDeclareCharClass with arg. spec.
. 's>{\TrimSpaces }mm' on line 518.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \__xeCJK_set_char_class_aux:Nnw with arg. spec.
. 'm>{\SplitArgument {1}{->}}m' on line 535.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \normalspacedchars with arg. spec. 'm' on line
. 577.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKResetPunctClass with arg. spec. '' on line
. 584.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKResetCharClass with arg. spec. '' on line
. 591.
.................................................
\c__xeCJK_CJK_node_dim=\dimen136
\c__xeCJK_CJK-space_node_dim=\dimen137
\c__xeCJK_default_node_dim=\dimen138
\c__xeCJK_default-space_node_dim=\dimen139
\c__xeCJK_CJK-nobreak_node_dim=\dimen140
\c__xeCJK_normalspace_node_dim=\dimen141
\l__xeCJK_ccglue_skip=\skip60
\l__xeCJK_ecglue_skip=\skip61
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKnobreak with arg. spec. '' on line 1308.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKDeclareSubCJKBlock with arg. spec.
. 's>{\TrimSpaces }m>{\TrimSpaces }m' on line 1497.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKCancelSubCJKBlock with arg. spec. 'sm' on
. line 1508.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKRestoreSubCJKBlock with arg. spec. 'sm' on
. line 1517.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKsetwidth with arg. spec. 'smm' on line 1615.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKsetkern with arg. spec. 'mmm' on line 1619.
.................................................
.................................................
. xtemplate info: "declare-object-type"
.
. Declaring object type 'xeCJK/punctuation' taking \c_zero argument(s) on
. line 1720.
.................................................
\l__xeCJK_fixed_punct_width_dim=\dimen142
\l__xeCJK_mixed_punct_width_dim=\dimen143
\l__xeCJK_middle_punct_width_dim=\dimen144
\l__xeCJK_fixed_margin_width_dim=\dimen145
\l__xeCJK_mixed_margin_width_dim=\dimen146
\l__xeCJK_middle_margin_width_dim=\dimen147
\l__xeCJK_bound_punct_width_dim=\dimen148
\l__xeCJK_bound_margin_width_dim=\dimen149
\l__xeCJK_margin_minimum_dim=\dimen150
\l__xeCJK_kerning_total_width_dim=\dimen151
\l__xeCJK_same_align_margin_dim=\dimen152
\l__xeCJK_different_align_margin_dim=\dimen153
\l__xeCJK_kerning_margin_width_dim=\dimen154
\l__xeCJK_kerning_margin_minimum_dim=\dimen155
\l__xeCJK_bound_dim=\dimen156
\l__xeCJK_reverse_bound_dim=\dimen157
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKDeclarePunctStyle with arg. spec.
. '>{\TrimSpaces }mm' on line 2205.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKEditPunctStyle with arg. spec.
. '>{\TrimSpaces }mm' on line 2218.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setCJKfallbackfamilyfont with arg. spec. 'mO{}m'
. on line 2306.
.................................................
\g__xeCJK_family_int=\count126
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \CJKfamily with arg. spec. 't+t-m' on line 2730.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \__xeCJK_gobble_CJKfamily:wn with arg. spec.
. 't+t-m' on line 2744.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setCJKmainfont with arg. spec. 'O{}m' on line
. 2794.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setCJKsansfont with arg. spec. 'O{}m' on line
. 2800.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setCJKmonofont with arg. spec. 'O{}m' on line
. 2805.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setCJKfamilyfont with arg. spec. 'mO{}m' on line
. 2812.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newCJKfontfamily with arg. spec. 'omO{}m' on line
. 2818.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \CJKfontspec with arg. spec. 'O{}m' on line 2823.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \defaultCJKfontfeatures with arg. spec. 'm' on
. line 2846.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \addCJKfontfeatures with arg. spec. 'sO{}m' on
. line 2852.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setCJKmathfont with arg. spec. 'O{}m' on line
. 3020.
.................................................
\l__xeCJK_verb_case_int=\count127
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKVerbAddon with arg. spec. '' on line 3173.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKOffVerbAddon with arg. spec. '' on line
. 3177.
.................................................
\l__xeCJK_verb_exspace_skip=\skip62
*************************************************
* xeCJK warning: "option-deprecated"
*
* The `normalindentfirst' option is deprecated.
*
*************************************************
(/usr/local/texlive/2014/texmf-dist/tex/latex/fontspec/fontspec.sty
Package: fontspec 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLaTeX
\l_fontspec_script_int=\count128
\l_fontspec_language_int=\count129
\l_fontspec_strnum_int=\count130
\l_fontspec_tmpa_dim=\dimen158
\l_fontspec_tmpb_dim=\dimen159
\l_fontspec_tmpc_dim=\dimen160
Variant \tl_gset:cV already defined; not changing it on line 69
(/usr/local/texlive/2014/texmf-dist/tex/latex/fontspec/fontspec-patches.sty
Package: fontspec-patches 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLa
TeX
(/usr/local/texlive/2014/texmf-dist/tex/latex/base/fixltx2e.sty
Package: fixltx2e 2014/05/13 v1.1q fixes to LaTeX
LaTeX Info: Redefining \em on input line 429.
)
LaTeX Info: Redefining \em on input line 22.
LaTeX Info: Redefining \emph on input line 30.
LaTeX Info: Redefining \- on input line 33.
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \oldstylenums with arg. spec. 'm' on line 128.
*************************************************
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \liningnums with arg. spec. 'm' on line 132.
.................................................
) (/usr/local/texlive/2014/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty
Package: fontspec-xetex 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLaTe
X
(/usr/local/texlive/2014/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
(/usr/local/texlive/2014/texmf-dist/tex/latex/euenc/eu1enc.def
File: eu1enc.def 2010/05/27 v0.1h Experimental Unicode font encodings
)
LaTeX Font Info: Try loading font information for EU1+lmr on input line 100.
(/usr/local/texlive/2014/texmf-dist/tex/latex/euenc/eu1lmr.fd
File: eu1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
))
(/usr/local/texlive/2014/texmf-dist/tex/xelatex/xunicode/xunicode.sty
File: xunicode.sty 2011/09/09 v0.981 provides access to latin accents and many
other characters in Unicode lower plane
(/usr/local/texlive/2014/texmf-dist/tex/latex/tipa/t3enc.def
File: t3enc.def 2001/12/31 T3 encoding
LaTeX Font Info: Try loading font information for EU1+lmss on input line 357
.
(/usr/local/texlive/2014/texmf-dist/tex/latex/euenc/eu1lmss.fd
File: eu1lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern
))
\tipaTiiicode=\count131
\tipasavetokens=\toks15
\tipachecktokens=\toks16
(/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2014/04/25 v1.0g Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
(/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(/usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/graphics.cfg
File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
)
Package graphics Info: Driver file: xetex.def on input line 91.
(/usr/local/texlive/2014/texmf-dist/tex/xelatex/xetex-def/xetex.def
File: xetex.def 2014/04/28 v4.01 LaTeX color/graphics driver for XeTeX (RRM/JK)
))
\Gin@req@height=\dimen161
\Gin@req@width=\dimen162
))
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \fontspec with arg. spec. 'O{}m' on line 41.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setmainfont with arg. spec. 'O{}m' on line 46.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setsansfont with arg. spec. 'O{}m' on line 51.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setmonofont with arg. spec. 'O{}m' on line 56.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setmathrm with arg. spec. 'O{}m' on line 65.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setboldmathrm with arg. spec. 'O{}m' on line 69.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setmathsf with arg. spec. 'O{}m' on line 73.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setmathtt with arg. spec. 'O{}m' on line 77.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newfontfamily with arg. spec. 'mO{}m' on line 96.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newfontface with arg. spec. 'mO{}m' on line 100.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \defaultfontfeatures with arg. spec. 'om' on line
. 108.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \addfontfeatures with arg. spec. 'm' on line 144.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newfontfeature with arg. spec. 'mm' on line 156.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newAATfeature with arg. spec. 'mmmm' on line 164.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newICUfeature with arg. spec. 'mmm' on line 172.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \aliasfontfeature with arg. spec. 'mm' on line
. 201.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \aliasfontfeatureoption with arg. spec. 'mmm' on
. line 203.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newfontscript with arg. spec. 'mm' on line 208.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newfontlanguage with arg. spec. 'mm' on line 235.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareFontsExtensions with arg. spec. 'm' on
. line 256.
.................................................
Variant \prop_gput:cnV already defined; not changing it on line 582
Variant \prop_gput:cnx already defined; not changing it on line 583
\l_fontspec_tmp_int=\count132
LaTeX Info: Redefining \itshape on input line 2087.
LaTeX Info: Redefining \slshape on input line 2092.
LaTeX Info: Redefining \scshape on input line 2097.
LaTeX Info: Redefining \upshape on input line 2102.
(/usr/local/texlive/2014/texmf-dist/tex/latex/fontspec/fontspec.cfg)))
(/usr/local/texlive/2014/texmf-dist/tex/xelatex/xecjk/xunicode-addon.sty
Package: xunicode-addon 2014/05/13 v3.2.12 addon file for xunicode
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \ReloadXunicode with arg. spec. 'm' on line 89.
*************************************************
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \DeclareUTFmathsymbols with arg. spec. 'm' on
* line 124.
*************************************************
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \UseMathAsText with arg. spec. '' on line 133.
*************************************************
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \UndeclareUTFcharacter with arg. spec.
* 'O{\UTFencname }mm' on line 168.
*************************************************
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \UndeclareUTFcomposite with arg. spec.
* 'O{\UTFencname }mmm' on line 175.
*************************************************
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \DeclareUTFcharacter with arg. spec.
* 'O{\UTFencname }mm' on line 202.
*************************************************
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareUTFSymbol with arg. spec. 'mO{\UTFencname
. }m' on line 228.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareUTFCommand with arg. spec. 'mO{\UTFencname
. }m' on line 230.
.................................................
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \DeclareUTFcomposite with arg. spec.
* 'O{\UTFencname }mmm' on line 273.
*************************************************
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareUTFCompositeCommand with arg. spec.
. 'mO{\UTFencname }mm' on line 286.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareUTFCompositeSymbol with arg. spec.
. 'mO{\UTFencname }mm' on line 291.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareUTFComposite with arg. spec.
. 'mO{\UTFencname }' on line 293.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareUTFEncodedAccent with arg. spec.
. 'mO{\UTFencname }mm' on line 295.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareUTFEncodedAccents with arg. spec.
. 'mO{\UTFencname }mm' on line 297.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareUTFEncodedSymbol with arg. spec.
. 'mO{\UTFencname }mm' on line 299.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareUTFEncodedCircle with arg. spec.
. 'mO{\UTFencname }mm' on line 301.
.................................................
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \DeclareEncodedCompositeCharacter with arg.
* spec. 'mmmm' on line 303.
*************************************************
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \DeclareEncodedCompositeAccents with arg. spec.
* 'mmmm' on line 305.
*************************************************
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareUTFDoubleEncodedAccent with arg. spec.
. 'mO{\UTFencname }mm' on line 307.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareUTFDoubleEncodedSymbol with arg. spec.
. 'mO{\UTFencname }mm' on line 309.
.................................................
\l__xunadd_circle_width_dim=\dimen163
\l__xunadd_tmp_coffin=\box42
\l__xunadd_circle_coffin=\box43
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \settextcircledratio with arg. spec. 'm' on line
. 459.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \AtBeginUTFCommand with arg. spec. 'sO{}+m' on
. line 528.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \AtEndUTFCommand with arg. spec. 'sO{}+m' on line
. 538.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareUTFTIPACommand with arg. spec.
. 'O{\UTFencname }m' on line 570.
.................................................
)
\g__file_internal_ior=\read1
(/usr/local/texlive/2014/texmf-dist/tex/xelatex/xunicode/xunicode.sty
File: xunicode.sty 2011/09/09 v0.981 provides access to latin accents and many
other characters in Unicode lower plane
*** Reloading Xunicode for encoding 'EU1' ***
) (/usr/local/texlive/2014/texmf-dist/tex/xelatex/xecjk/xunicode-extra.def
File: xunicode-extra.def 2014/05/13 v3.2.12 extra definition for xunicode
)
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKsetup with arg. spec. '+m' on line 3476.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKsetemboldenfactor with arg. spec. 'm' on
. line 3478.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKsetslantfactor with arg. spec. 'm' on line
. 3480.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \punctstyle with arg. spec. 'm' on line 3481.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKplainchr with arg. spec. '' on line 3482.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \CJKsetecglue with arg. spec. 'm' on line 3483.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \CJKspace with arg. spec. '' on line 3485.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \CJKnospace with arg. spec. '' on line 3486.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKallowbreakbetweenpuncts with arg. spec. ''
. on line 3488.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKnobreakbetweenpuncts with arg. spec. '' on
. line 3490.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKenablefallback with arg. spec. '' on line
. 3492.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKdisablefallback with arg. spec. '' on line
. 3494.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \xeCJKsetcharclass with arg. spec. 'mmm' on line
. 3499.
.................................................
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \nobreakspace with arg. spec. '' on line 3582.
*************************************************
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \fontfamily with arg. spec. 'm' on line 3628.
*************************************************
(/usr/local/texlive/2014/texmf-dist/tex/xelatex/xecjk/config/xeCJK.cfg
File: xeCJK.cfg 2014/05/13 v3.2.12 Configuration file for xeCJK package
))
(/usr/local/texlive/2014/texmf-dist/tex/xelatex/xecjk/xeCJKfntef.sty
Package: xeCJKfntef 2014/05/13 v3.2.12 xeCJK patch file for ulem/CJKfntef
(/usr/local/texlive/2014/texmf-dist/tex/generic/ulem/ulem.sty
\UL@box=\box44
\UL@hyphenbox=\box45
\UL@skip=\skip63
\UL@hook=\toks17
\UL@height=\dimen164
\UL@pe=\count133
\UL@pixel=\dimen165
\ULC@box=\box46
Package: ulem 2012/05/18
\ULdepth=\dimen166
)
(/usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/CJKfntef.sty
Package: CJKfntef 2012/05/07 4.8.3
\CJK@fntefSkip=\skip64
\CJK@nest=\count134
\CJK@fntefDimen=\dimen167
\CJK@underdotBox=\box47
\CJK@ULbox=\box48
\CJK@underanyskip=\dimen168
)
(/usr/local/texlive/2014/texmf-dist/tex/latex/environ/environ.sty
Package: environ 2014/05/04 v0.3 A new way to define environments
(/usr/local/texlive/2014/texmf-dist/tex/latex/trimspaces/trimspaces.sty
Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
)
\@envbody=\toks18
)
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \CJKunderdot with arg. spec. 'm' on line 395.
*************************************************
\g__xeCJK_under_symbol_box=\box49
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \CJKunderanysymbol with arg. spec. 'mmm' on line
* 418.
*************************************************
*************************************************
* LaTeX warning: "xparse/redefine-environment"
*
* Redefining document environment 'CJKfilltwosides' with arg. spec. 'O{c}m' on
* line 462.
*************************************************
) (/usr/local/texlive/2014/texmf-dist/tex/latex/ctex/engine/ctex-cjk-common.def
\ccwd=\dimen169
))
\CTEX@q=\count135
\CTEX@r=\count136
) (/usr/local/texlive/2014/texmf-dist/tex/latex/ctex/def/ctex-caption.def)
(/usr/local/texlive/2014/texmf-dist/tex/latex/ctex/def/ctex-class.def)
(/usr/local/texlive/2014/texmf-dist/tex/latex/ctex/def/ctex-book.def))
(/usr/local/texlive/2014/texmf-dist/tex/latex/ctex/def/ctex-utf8.def)
(/usr/local/texlive/2014/texmf-dist/tex/latex/ctex/cfg/ctexcap.cfg
(/usr/local/texlive/2014/texmf-dist/tex/latex/ctex/cfg/ctexcap-utf8.cfg))
(/usr/local/texlive/texmf-local/tex/latex/ctex/cfg/ctex.cfg
*************************************************
* fontspec warning: "script-not-exist"
*
* Font 'STSong' does not contain script 'CJK'.
*************************************************
\g_fontspec_family_STSong_int=\count137
.................................................
. fontspec info: "no-font-shape"
.
. Could not resolve font STZhongsong/I (it probably doesn't exist).
.................................................
.................................................
. fontspec info: "defining-font"
.
. Font family 'STSong(0)' created for font 'STSong' with options
. [Ligatures=TeX,Script={CJK},BoldFont={STZhongsong},ItalicFont={STKaiti}].
.
. This font family consists of the following shapes:
.
. * 'normal' with NFSS spec.:
. <->"STSong/ICU:mapping=tex-text;"
.
. * 'bold' with NFSS spec.:
. <->"STZhongsong/ICU:mapping=tex-text;"
.
. * 'italic' with NFSS spec.:
. <->"STKaiti/ICU:mapping=tex-text;"
.................................................
)
LaTeX Warning: You have requested, on input line 56, version
`2015/03/15' of document class ctexbook,
but only version
`2011/03/11 v1.02c ctexbook document class'
is available.
(/usr/local/texlive/2014/texmf-dist/tex/latex/mh/mathtools.sty
Package: mathtools 2014/05/21 v1.14 mathematical typesetting tools
(/usr/local/texlive/2014/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2007/08/22 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count138
\calc@Bcount=\count139
\calc@Adimen=\dimen170
\calc@Bdimen=\dimen171
\calc@Askip=\skip65
\calc@Bskip=\skip66
LaTeX Info: Redefining \setlength on input line 75.
LaTeX Info: Redefining \addtolength on input line 76.
\calc@Ccount=\count140
\calc@Cskip=\skip67
)
(/usr/local/texlive/2014/texmf-dist/tex/latex/mh/mhsetup.sty
Package: mhsetup 2010/01/21 v1.2a programming setup (MH)