-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLingPhDThesis.log
More file actions
985 lines (904 loc) · 35.8 KB
/
Copy pathLingPhDThesis.log
File metadata and controls
985 lines (904 loc) · 35.8 KB
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
<<<<<<< HEAD
This is pdfTeX, Version 3.1415926-1.40.10 (MiKTeX 2.8) (preloaded format=pdflatex 2016.4.7) 16 APR 2016 20:32
=======
This is pdfTeX, Version 3.1415926-1.40.10 (MiKTeX 2.8) (preloaded format=latex 2016.3.26) 6 APR 2016 17:17
>>>>>>> 729dd2b5659eab8b22e3815e435b18bc8fd3a836
entering extended mode
**LingPhDThesis.tex
(E:\PHD_thesis_template\LingPhDThesis.tex
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, dumylang, nohyphenation, ge
rman, ngerman, german-x-2009-06-19, ngerman-x-2009-06-19, french, loaded.
(E:\PHD_thesis_template\ZJUThesis.cls
Document Class: ZJUThesis 2014/02/19 v1.0 ZJUThesis document class
(E:\CTEX\CTeX\tex\latex\ctex\ctexbook.cls
Document Class: ctexbook 2010/01/22 v0.97 ctexbook document class
(E:\CTEX\CTeX\tex\latex\ctex\opt\ctex-common-opts.def)
(E:\CTEX\CTeX\tex\latex\ctex\opt\ctex-caption-opts.def
\c@CTEX@sectiondepth=\count79
)
(E:\CTEX\CTeX\tex\latex\ctex\opt\ctex-class-opts.def)
(E:\CTEX\CTeX\tex\latex\ctex\cfg\ctexopts.cfg)
(E:\CTEX\CTeX\tex\latex\ctex\def\ctex-loadclass.def
(E:\CTEX\MiKTeX\tex\latex\base\book.cls
Document Class: book 2007/10/19 v1.4h Standard LaTeX document class
(E:\CTEX\MiKTeX\tex\latex\base\bk12.clo
File: bk12.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
)
\c@part=\count80
\c@chapter=\count81
\c@section=\count82
\c@subsection=\count83
\c@subsubsection=\count84
\c@paragraph=\count85
\c@subparagraph=\count86
\c@figure=\count87
\c@table=\count88
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
))
(E:\CTEX\CTeX\tex\latex\ctex\def\ctex-common.def
(E:\CTEX\MiKTeX\tex\generic\oberdiek\ifpdf.sty
Package: ifpdf 2009/04/10 v2.0 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in pdf mode detected.
)
(E:\CTEX\MiKTeX\tex\latex\ifxetex\ifxetex.sty
Package: ifxetex 2009/01/23 v0.5 Provides ifxetex conditional
)
(E:\CTEX\MiKTeX\tex\latex\graphics\keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
)
(E:\CTEX\MiKTeX\tex\latex\tools\indentfirst.sty
Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC)
)
(E:\CTEX\MiKTeX\tex\latex\base\fix-cm.sty
Package: fix-cm 2006/09/13 v1.1m fixes to LaTeX
(E:\CTEX\MiKTeX\tex\latex\base\ts1enc.def
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
))
(E:\CTEX\MiKTeX\tex\latex\fancyhdr\fancyhdr.sty
\fancy@headwidth=\skip43
\f@ncyO@elh=\skip44
\f@ncyO@erh=\skip45
\f@ncyO@olh=\skip46
\f@ncyO@orh=\skip47
\f@ncyO@elf=\skip48
\f@ncyO@erf=\skip49
\f@ncyO@olf=\skip50
\f@ncyO@orf=\skip51
)
(E:\CTEX\CTeX\tex\latex\ctex\engine\ctex-cjk-engine.def
(E:\CTEX\MiKTeX\tex\latex\cjk\CJK.sty
Package: CJK 2008/12/29 4.8.2
(E:\CTEX\MiKTeX\tex\latex\cjk\mule\MULEenc.sty
Package: MULEenc 2008/12/29 4.8.2
)
(E:\CTEX\MiKTeX\tex\latex\cjk\CJK.enc
File: CJK.enc 2008/12/29 4.8.2
)
LaTeX Info: Redefining \selectfont on input line 756.
\CJK@indent=\box26
)
(E:\CTEX\CTeX\tex\latex\CJKpunct\CJKpunct.sty
Package: CJKpunct 2009/05/06 4.8.2
\CJKpunct@cnta=\count89
\CJKpunct@cntb=\count90
\CJKpunct@cntc=\count91
\CJKpunct@cntd=\count92
\CJKpunct@cnte=\count93
(E:\CTEX\CTeX\tex\latex\CJKpunct\CJKpunct.spa))
(E:\CTEX\CTeX\tex\latex\ctex\engine\ctex-cjk-common.def
(E:\CTEX\MiKTeX\tex\latex\cjk\CJKfntef.sty
Package: CJKfntef 2008/12/29 4.8.2
(E:\CTEX\MiKTeX\tex\latex\cjk\CJKulem.sty
Package: CJKulem 2008/12/29 4.8.2
(E:\CTEX\MiKTeX\tex\latex\ltxmisc\ulem.sty
\UL@box=\box27
\UL@hyphenbox=\box28
\UL@skip=\skip52
\UL@hook=\toks15
\UL@pe=\count94
\UL@pixel=\dimen103
\ULC@box=\box29
Package: ulem 2000/05/26
\ULdepth=\dimen104
)
\UL@lastkern=\dimen105
\CJK@skip=\skip53
)
\CJK@fntefSkip=\skip54
\CJK@nest=\count95
\CJK@fntefDimen=\dimen106
\CJK@underdotBox=\box30
\CJK@ULbox=\box31
)
\ccwd=\dimen107
)
(E:\CTEX\CTeX\tex\latex\ctex\fontset\ctex-cjk-winfonts.def
(E:\CTEX\CTeX\tex\generic\zhmetrics\zhwinfonts.tex
(E:\CTEX\MiKTeX\tex\generic\oberdiek\ifpdf.sty
Package ifpdf Info: The package is already loaded, stopped on input line 53.
){E:/CTEX/UserData/pdftex/config/pdftex.map{Unicode.sfd}{UGBK.sfd}})))
\CTEX@q=\count96
\CTEX@r=\count97
)
(E:\CTEX\CTeX\tex\latex\ctex\def\ctex-caption.def)
(E:\CTEX\CTeX\tex\latex\ctex\def\ctex-class.def)
(E:\CTEX\CTeX\tex\latex\ctex\def\ctex-book.def))
(E:\CTEX\CTeX\tex\latex\ctex\def\ctex-gbk.def)
(E:\CTEX\CTeX\tex\latex\ctex\cfg\ctexcap.cfg
(E:\CTEX\CTeX\tex\latex\ctex\cfg\ctexcap-gbk.cfg))
(E:\CTEX\CTeX\tex\latex\ctex\cfg\ctex.cfg)
(E:\CTEX\MiKTeX\tex\latex\ams\math\amsmath.sty
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip55
For additional information on amsmath, use the `?' option.
(E:\CTEX\MiKTeX\tex\latex\ams\math\amstext.sty
Package: amstext 2000/06/29 v2.01
(E:\CTEX\MiKTeX\tex\latex\ams\math\amsgen.sty
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks16
\ex@=\dimen108
))
(E:\CTEX\MiKTeX\tex\latex\ams\math\amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen109
)
(E:\CTEX\MiKTeX\tex\latex\ams\math\amsopn.sty
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count98
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count99
\leftroot@=\count100
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count101
\DOTSCASE@=\count102
LaTeX Info: Redefining \ldots on input line 379.
LaTeX Info: Redefining \dots on input line 382.
LaTeX Info: Redefining \cdots on input line 467.
\Mathstrutbox@=\box32
\strutbox@=\box33
\big@size=\dimen110
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
\macc@depth=\count103
\c@MaxMatrixCols=\count104
\dotsspace@=\muskip10
\c@parentequation=\count105
\dspbrk@lvl=\count106
\tag@help=\toks17
\row@=\count107
\column@=\count108
\maxfields@=\count109
\andhelp@=\toks18
\eqnshift@=\dimen111
\alignsep@=\dimen112
\tagshift@=\dimen113
\tagwidth@=\dimen114
\totwidth@=\dimen115
\lineht@=\dimen116
\@envbody=\toks19
\multlinegap=\skip56
\multlinetaggap=\skip57
\mathdisplay@stack=\toks20
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
(E:\CTEX\MiKTeX\tex\latex\ams\classes\amsthm.sty
Package: amsthm 2004/08/06 v2.20
\thm@style=\toks21
\thm@bodyfont=\toks22
\thm@headfont=\toks23
\thm@notefont=\toks24
\thm@headpunct=\toks25
\thm@preskip=\skip58
\thm@postskip=\skip59
\thm@headsep=\skip60
\dth@everypar=\toks26
)
(E:\CTEX\MiKTeX\tex\latex\amsfonts\amsfonts.sty
Package: amsfonts 2009/06/22 v3.00 Basic AMSFonts support
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 96.
)
(E:\CTEX\MiKTeX\tex\latex\amsfonts\amssymb.sty
Package: amssymb 2009/06/22 v3.00
)
(E:\CTEX\MiKTeX\tex\latex\tools\bm.sty
Package: bm 2004/02/26 v1.1c Bold Symbol Support (DPC/FMi)
\symboldoperators=\mathgroup6
\symboldletters=\mathgroup7
\symboldsymbols=\mathgroup8
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 138.
LaTeX Info: Redefining \bm on input line 204.
)
(E:\CTEX\MiKTeX\tex\latex\ltxmisc\cases.sty
Package: cases 2002/05/02 ver 2.5
)
(E:\CTEX\MiKTeX\tex\latex\algorithms\algorithm.sty
Package: algorithm 2009/08/24 v0.1 Document Style `algorithm' - floating enviro
nment
(E:\CTEX\MiKTeX\tex\latex\float\float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count110
\float@exts=\toks27
\float@box=\box34
\@float@everytoks=\toks28
\@floatcapt=\box35
)
(E:\CTEX\MiKTeX\tex\latex\base\ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
\@float@every@algorithm=\toks29
\c@algorithm=\count111
)
(E:\CTEX\MiKTeX\tex\latex\graphics\lscape.sty
Package: lscape 2000/10/22 v3.01 Landscape Pages (DPC)
(E:\CTEX\MiKTeX\tex\latex\graphics\graphics.sty
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
(E:\CTEX\MiKTeX\tex\latex\graphics\trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(E:\CTEX\MiKTeX\tex\latex\00miktex\graphics.cfg
File: graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
)
Package graphics Info: Driver file: pdftex.def on input line 91.
(E:\CTEX\MiKTeX\tex\latex\pdftex-def\pdftex.def
File: pdftex.def 2009/08/25 v0.04m Graphics/color for pdfTeX
\Gread@gobject=\count112
)))
(E:\CTEX\MiKTeX\tex\latex\algorithmicx\algpseudocode.sty
Package: algpseudocode
(E:\CTEX\MiKTeX\tex\latex\algorithmicx\algorithmicx.sty
Package: algorithmicx 2005/04/27 v1.2 Algorithmicx
Document Style algorithmicx 1.2 - a greatly improved `algorithmic' style
\c@ALG@line=\count113
\c@ALG@rem=\count114
\c@ALG@nested=\count115
\ALG@tlm=\skip61
\ALG@thistlm=\skip62
\c@ALG@Lnr=\count116
\c@ALG@blocknr=\count117
\c@ALG@storecount=\count118
\c@ALG@tmpcounter=\count119
\ALG@tmplength=\skip63
)
Document Style - pseudocode environments for use with the `algorithmicx' style
) (E:\CTEX\MiKTeX\tex\latex\tools\enumerate.sty
Package: enumerate 1999/03/05 v3.00 enumerate extensions (DPC)
\@enLab=\toks30
)
(E:\CTEX\MiKTeX\tex\latex\multirow\multirow.sty
\bigstrutjot=\dimen117
)
(E:\CTEX\MiKTeX\tex\latex\caption\caption.sty
Package: caption 2010/01/09 v3.1m Customizing captions (AR)
(E:\CTEX\MiKTeX\tex\latex\caption\caption3.sty
Package: caption3 2010/01/14 v3.1m caption3 kernel (AR)
\captionmargin=\dimen118
\captionmargin@=\dimen119
\captionwidth=\dimen120
\caption@indent=\dimen121
\caption@parindent=\dimen122
\caption@hangindent=\dimen123
Package caption Info: Unknown document class (or package),
(caption) standard defaults will be used on input line 1084.
)
Package caption Warning: Unsupported document class (or package) detected,
(caption) usage of the caption package is not recommended.
See the caption package documentation for explanation.
Package caption Info: \@makecaption = \long macro:#1#2->\vskip \abovecaptionski
p \sbox \@tempboxa {#1\CTEX@caption@delimiter #2}\ifdim \wd \@tempboxa >\hsize
#1\CTEX@caption@delimiter #2\par \else \global \@minipagefalse \hb@xt@ \hsize {
\hfil \box \@tempboxa \hfil }\fi \vskip \belowcaptionskip .
\c@ContinuedFloat=\count120
Package caption Info: float package is loaded.
) (E:\CTEX\MiKTeX\tex\latex\graphics\graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
\Gin@req@height=\dimen124
\Gin@req@width=\dimen125
)
(E:\CTEX\MiKTeX\tex\latex\subfigure\subfigure.sty
Package: subfigure 2002/07/30 v2.1.4 subfigure package
\subfigtopskip=\skip64
\subfigcapskip=\skip65
\subfigcaptopadj=\dimen126
\subfigbottomskip=\skip66
\subfigcapmargin=\dimen127
\subfiglabelskip=\skip67
\c@subfigure=\count121
\c@lofdepth=\count122
\c@subtable=\count123
\c@lotdepth=\count124
****************************************
* Local config file subfigure.cfg used *
****************************************
(E:\CTEX\MiKTeX\tex\latex\subfigure\subfigure.cfg)
\subfig@top=\skip68
\subfig@bottom=\skip69
)
(E:\CTEX\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
(E:\CTEX\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
(E:\CTEX\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
(E:\CTEX\MiKTeX\tex\generic\pgf\utilities\pgfutil-common.tex
\pgfutil@everybye=\toks31
)
(E:\CTEX\MiKTeX\tex\generic\pgf\utilities\pgfutil-latex.def)
(E:\CTEX\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
Package: pgfrcs 2008/02/20 v2.00 (rcs-revision 1.21)
))
Package: pgf 2008/01/15 v2.00 (rcs-revision 1.12)
(E:\CTEX\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
(E:\CTEX\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
(E:\CTEX\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
Package: pgfsys 2008/02/07 v2.00 (rcs-revision 1.31)
(E:\CTEX\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
\pgfkeys@pathtoks=\toks32
\pgfkeys@temptoks=\toks33
)
\pgf@x=\dimen128
\pgf@y=\dimen129
\pgf@xa=\dimen130
\pgf@ya=\dimen131
\pgf@xb=\dimen132
\pgf@yb=\dimen133
\pgf@xc=\dimen134
\pgf@yc=\dimen135
\c@pgf@counta=\count125
\c@pgf@countb=\count126
\c@pgf@countc=\count127
\c@pgf@countd=\count128
(E:\CTEX\MiKTeX\tex\generic\pgf\systemlayer\pgf.cfg
File: pgf.cfg 2008/01/13 (rcs-revision 1.6)
)
Package pgfsys Info: Driver file for pgf: pgfsys-pdftex.def on input line 885.
(E:\CTEX\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-pdftex.def
File: pgfsys-pdftex.def 2007/12/20 (rcs-revision 1.20)
(E:\CTEX\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-common-pdf.def
File: pgfsys-common-pdf.def 2007/12/17 (rcs-revision 1.8)
)))
(E:\CTEX\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
File: pgfsyssoftpath.code.tex 2008/01/23 (rcs-revision 1.6)
\pgfsyssoftpath@smallbuffer@items=\count129
\pgfsyssoftpath@bigbuffer@items=\count130
)
(E:\CTEX\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
File: pgfsysprotocol.code.tex 2006/10/16 (rcs-revision 1.4)
))
(E:\CTEX\MiKTeX\tex\latex\xcolor\xcolor.sty
Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK)
(E:\CTEX\MiKTeX\tex\latex\00miktex\color.cfg
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package xcolor Info: Driver file: pdftex.def on input line 225.
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1337.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1341.
Package xcolor Info: Model `RGB' extended on input line 1353.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1355.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1356.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1357.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1358.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1359.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1360.
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
Package: pgfcore 2008/01/15 v2.00 (rcs-revision 1.6)
(E:\CTEX\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
(E:\CTEX\MiKTeX\tex\generic\pgf\math\pgfmathcalc.code.tex
(E:\CTEX\MiKTeX\tex\generic\pgf\math\pgfmathutil.code.tex
\pgfmath@box=\box36
)
(E:\CTEX\MiKTeX\tex\generic\pgf\math\pgfmathparser.code.tex
\pgfmath@stack=\toks34
\c@pgfmath@parsecounta=\count131
\c@pgfmath@parsecountb=\count132
\c@pgfmath@parsecountc=\count133
\pgfmath@parsex=\dimen136
)
(E:\CTEX\MiKTeX\tex\generic\pgf\math\pgfmathoperations.code.tex
(E:\CTEX\MiKTeX\tex\generic\pgf\math\pgfmathtrig.code.tex)
(E:\CTEX\MiKTeX\tex\generic\pgf\math\pgfmathrnd.code.tex))
(E:\CTEX\MiKTeX\tex\generic\pgf\math\pgfmathbase.code.tex)))
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepoints.code.tex
File: pgfcorepoints.code.tex 2008/02/03 (rcs-revision 1.13)
\pgf@picminx=\dimen137
\pgf@picmaxx=\dimen138
\pgf@picminy=\dimen139
\pgf@picmaxy=\dimen140
\pgf@pathminx=\dimen141
\pgf@pathmaxx=\dimen142
\pgf@pathminy=\dimen143
\pgf@pathmaxy=\dimen144
\pgf@xx=\dimen145
\pgf@xy=\dimen146
\pgf@yx=\dimen147
\pgf@yy=\dimen148
\pgf@zx=\dimen149
\pgf@zy=\dimen150
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathconstruct.code.tex
File: pgfcorepathconstruct.code.tex 2008/02/13 (rcs-revision 1.14)
\pgf@path@lastx=\dimen151
\pgf@path@lasty=\dimen152
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathusage.code.tex
File: pgfcorepathusage.code.tex 2008/01/23 (rcs-revision 1.11)
\pgf@shorten@end@additional=\dimen153
\pgf@shorten@start@additional=\dimen154
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcorescopes.code.tex
File: pgfcorescopes.code.tex 2008/01/15 (rcs-revision 1.26)
\pgfpic=\box37
\pgf@hbox=\box38
\pgf@layerbox@main=\box39
\pgf@picture@serial@count=\count134
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcoregraphicstate.code.tex
File: pgfcoregraphicstate.code.tex 2007/12/12 (rcs-revision 1.8)
\pgflinewidth=\dimen155
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcoretransformations.code.tex
File: pgfcoretransformations.code.tex 2008/02/04 (rcs-revision 1.10)
\pgf@pt@x=\dimen156
\pgf@pt@y=\dimen157
\pgf@pt@temp=\dimen158
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcorequick.code.tex
File: pgfcorequick.code.tex 2006/10/11 (rcs-revision 1.2)
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreobjects.code.tex
File: pgfcoreobjects.code.tex 2006/10/11 (rcs-revision 1.2)
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathprocessing.code.tex
File: pgfcorepathprocessing.code.tex 2008/01/23 (rcs-revision 1.7)
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcorearrows.code.tex
File: pgfcorearrows.code.tex 2007/06/07 (rcs-revision 1.8)
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreshade.code.tex
File: pgfcoreshade.code.tex 2007/12/10 (rcs-revision 1.9)
\pgf@max=\dimen159
\pgf@sys@shading@range@num=\count135
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreimage.code.tex
File: pgfcoreimage.code.tex 2008/01/15 (rcs-revision 1.1)
\pgfexternal@startupbox=\box40
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcorelayers.code.tex
File: pgfcorelayers.code.tex 2008/01/15 (rcs-revision 1.1)
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcoretransparency.code.tex
File: pgfcoretransparency.code.tex 2008/01/17 (rcs-revision 1.2)
)
(E:\CTEX\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepatterns.code.tex
File: pgfcorepatterns.code.tex 2008/01/15 (rcs-revision 1.1)
)))
(E:\CTEX\MiKTeX\tex\generic\pgf\modules\pgfmoduleshapes.code.tex
File: pgfmoduleshapes.code.tex 2008/02/13 (rcs-revision 1.4)
\pgfnodeparttextbox=\box41
\toks@savedmacro=\toks35
)
(E:\CTEX\MiKTeX\tex\generic\pgf\modules\pgfmoduleplot.code.tex
File: pgfmoduleplot.code.tex 2008/01/15 (rcs-revision 1.1)
\pgf@plotwrite=\write3
)
(E:\CTEX\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
Package: pgfcomp-version-0-65 2007/07/03 v2.00 (rcs-revision 1.7)
\pgf@nodesepstart=\dimen160
\pgf@nodesepend=\dimen161
)
(E:\CTEX\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
Package: pgfcomp-version-1-18 2007/07/23 v2.00 (rcs-revision 1.1)
))
(E:\CTEX\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
(E:\CTEX\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
Package: pgffor 2007/11/07 v2.00 (rcs-revision 1.8)
\pgffor@iter=\dimen162
\pgffor@skip=\dimen163
))
(E:\CTEX\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
Package: tikz 2008/02/13 v2.00 (rcs-revision 1.27)
(E:\CTEX\MiKTeX\tex\generic\pgf\libraries\pgflibraryplothandlers.code.tex
File: pgflibraryplothandlers.code.tex 2007/03/09 v2.00 (rcs-revision 1.9)
\pgf@plot@mark@count=\count136
\pgfplotmarksize=\dimen164
)
\tikz@lastx=\dimen165
\tikz@lasty=\dimen166
\tikz@lastxsaved=\dimen167
\tikz@lastysaved=\dimen168
\tikzleveldistance=\dimen169
\tikzsiblingdistance=\dimen170
\tikz@figbox=\box42
\tikz@tempbox=\box43
\tikztreelevel=\count137
\tikznumberofchildren=\count138
\tikznumberofcurrentchild=\count139
\tikz@fig@count=\count140
(E:\CTEX\MiKTeX\tex\generic\pgf\modules\pgfmodulematrix.code.tex
File: pgfmodulematrix.code.tex 2008/01/15 (rcs-revision 1.1)
\pgfmatrixcurrentrow=\count141
\pgfmatrixcurrentcolumn=\count142
\pgf@matrix@numberofcolumns=\count143
)
\tikz@expandcount=\count144
(E:\CTEX\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarytopaths
.code.tex
File: tikzlibrarytopaths.code.tex 2008/01/09 v2.00 (rcs-revision 1.1)
))) (E:\CTEX\MiKTeX\tex\latex\hyperref\hyperref.sty
Package: hyperref 2010/01/16 v6.80c Hypertext links for LaTeX
(E:\CTEX\MiKTeX\tex\generic\oberdiek\kvsetkeys.sty
Package: kvsetkeys 2009/12/22 v1.7 Key value parser (HO)
(E:\CTEX\MiKTeX\tex\generic\oberdiek\infwarerr.sty
Package: infwarerr 2007/09/09 v1.2 Providing info/warning/message (HO)
)
(E:\CTEX\MiKTeX\tex\generic\oberdiek\etexcmds.sty
Package: etexcmds 2007/12/12 v1.2 Prefix for e-TeX command names (HO)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
))
(E:\CTEX\MiKTeX\tex\generic\oberdiek\pdfescape.sty
Package: pdfescape 2007/11/11 v1.8 Provides hex, PDF name and string conversion
s (HO)
(E:\CTEX\MiKTeX\tex\generic\oberdiek\pdftexcmds.sty
Package: pdftexcmds 2009/12/12 v0.7 Utility functions of pdfTeX for LuaTeX (HO)
(E:\CTEX\MiKTeX\tex\generic\oberdiek\ifluatex.sty
Package: ifluatex 2009/04/17 v1.2 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
(E:\CTEX\MiKTeX\tex\generic\oberdiek\ltxcmds.sty
Package: ltxcmds 2009/12/12 v1.1 LaTeX kernel commands for general use (HO)
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
))
(E:\CTEX\MiKTeX\tex\generic\oberdiek\ifvtex.sty
Package: ifvtex 2008/11/04 v1.4 Switches for detecting VTeX and its modes (HO)
Package ifvtex Info: VTeX not detected.
)
(E:\CTEX\MiKTeX\tex\latex\oberdiek\hycolor.sty
Package: hycolor 2009/12/12 v1.6 Color options of hyperref/bookmark (HO)
(E:\CTEX\MiKTeX\tex\latex\oberdiek\xcolor-patch.sty
Package: xcolor-patch 2009/12/12 xcolor patch
))
\@linkdim=\dimen171
\Hy@linkcounter=\count145
\Hy@pagecounter=\count146
(E:\CTEX\MiKTeX\tex\latex\hyperref\pd1enc.def
File: pd1enc.def 2010/01/16 v6.80c Hyperref: PDFDocEncoding definition (HO)
)
(E:\CTEX\MiKTeX\tex\generic\oberdiek\intcalc.sty
Package: intcalc 2007/09/27 v1.1 Expandable integer calculations (HO)
)
(E:\CTEX\MiKTeX\tex\latex\00miktex\hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
(E:\CTEX\MiKTeX\tex\latex\oberdiek\kvoptions.sty
Package: kvoptions 2009/12/08 v3.6 Keyval support for LaTeX options (HO)
)
Package hyperref Info: Hyper figures OFF on input line 3290.
Package hyperref Info: Link nesting OFF on input line 3295.
Package hyperref Info: Hyper index ON on input line 3298.
Package hyperref Info: Plain pages OFF on input line 3305.
Package hyperref Info: Backreferencing OFF on input line 3310.
Implicit mode ON; LaTeX internals redefined
Package hyperref Info: Bookmarks ON on input line 3506.
(E:\CTEX\MiKTeX\tex\latex\ltxmisc\url.sty
\Urlmuskip=\muskip11
Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 3743.
(E:\CTEX\MiKTeX\tex\generic\oberdiek\bitset.sty
Package: bitset 2007/09/28 v1.0 Data type bit set (HO)
(E:\CTEX\MiKTeX\tex\generic\oberdiek\bigintcalc.sty
Package: bigintcalc 2007/11/11 v1.1 Expandable big integer calculations (HO)
))
\Fld@menulength=\count147
\Field@Width=\dimen172
\Fld@charsize=\dimen173
\Field@toks=\toks36
Package hyperref Info: Hyper figures OFF on input line 4702.
Package hyperref Info: Link nesting OFF on input line 4707.
Package hyperref Info: Hyper index ON on input line 4710.
Package hyperref Info: backreferencing OFF on input line 4717.
Package hyperref Info: Link coloring OFF on input line 4722.
Package hyperref Info: Link coloring with OCG OFF on input line 4727.
Package hyperref Info: PDF/A mode OFF on input line 4732.
(E:\CTEX\MiKTeX\tex\generic\oberdiek\atbegshi.sty
Package: atbegshi 2009/12/02 v1.10 At begin shipout hook (HO)
)
\Hy@abspage=\count148
\c@Item=\count149
\c@Hfootnote=\count150
)
*hyperref using driver hpdftex*
(E:\CTEX\MiKTeX\tex\latex\hyperref\hpdftex.def
File: hpdftex.def 2010/01/16 v6.80c Hyperref driver for pdfTeX
(E:\CTEX\MiKTeX\tex\generic\oberdiek\atveryend.sty
Package: atveryend 2009/12/11 v1.3 Hooks at very end of document (HO)
Package atveryend Info: \enddocument detected (standard).
)
\Fld@listcount=\count151
\c@bookmark@seq@number=\count152
(E:\CTEX\MiKTeX\tex\generic\oberdiek\rerunfilecheck.sty
Package: rerunfilecheck 2009/12/18 v1.2 Rerun checks for auxiliary files (HO)
(E:\CTEX\MiKTeX\tex\generic\oberdiek\uniquecounter.sty
Package: uniquecounter 2009/12/18 v1.1 Provides unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 3
26.
)
\Hy@SectionHShift=\skip70
)
Package hyperref Info: Option `CJKbookmarks' set `true' on input line 88.
Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 88.
Package hyperref Info: Option `colorlinks' set `true' on input line 88.
Package hyperref Info: Option `plainpages' set `false' on input line 88.
(E:\CTEX\MiKTeX\tex\latex\natbib\natbib.sty
Package: natbib 2009/11/07 8.31a (PWD, AO)
\bibhang=\skip71
\bibsep=\skip72
LaTeX Info: Redefining \cite on input line 694.
\c@NAT@ctr=\count153
)
(E:\CTEX\MiKTeX\tex\latex\ltxmisc\hypernat.sty
Package: hypernat 2001/07/09 v1.0b hyperref and natbib compatibility (jb)
))
(E:\PHD_thesis_template\ZJUThesis.cfg
File: ZJUThesis.cfg 2014/02/19 v0.1i ZJUThesis configuration file
\c@theorem=\count154
\c@lemma=\count155
\c@proposition=\count156
\c@corollary=\count157
\c@definition=\count158
\c@example=\count159
\c@remark=\count160
\c@case=\count161
) (E:\PHD_thesis_template\isomath.tex)
<<<<<<< HEAD
(E:\PHD_thesis_template\LingPhDThesis.aux
(E:\PHD_thesis_template\Chapters/abstract.aux)
(E:\PHD_thesis_template\Chapters/chapter2.aux))
=======
(E:\PHD_thesis_template\LingPhDThesis.aux)
>>>>>>> 729dd2b5659eab8b22e3815e435b18bc8fd3a836
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C00/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C05/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C09/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C10/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C20/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C19/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C40/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C42/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C43/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C50/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C52/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C49/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C60/mj/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C61/mj/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C63/mj/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C64/mj/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C65/mj/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C70/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C31/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C32/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C33/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C34/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C35/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C36/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C37/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C80/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C81/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C01/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C11/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C21/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C41/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for C62/song/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 27.
LaTeX Font Info: ... okay on input line 27.
(E:\CTEX\MiKTeX\tex\context\base\supp-pdf.tex
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count162
\scratchdimen=\dimen174
\scratchbox=\box44
\nofMPsegments=\count163
\nofMParguments=\count164
\everyMPshowfont=\toks37
\MPscratchCnt=\count165
\MPscratchDim=\dimen175
\MPnumerator=\count166
\everyMPtoPDFconversion=\toks38
)
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: hyperref package is loaded.
Package caption Info: subfigure package is loaded.
Package caption Info: End \AtBeginDocument code.
Package hyperref Info: Link coloring ON on input line 27.
(E:\CTEX\MiKTeX\tex\latex\hyperref\nameref.sty
Package: nameref 2009/12/18 v2.35 Cross-referencing by name of section
(E:\CTEX\MiKTeX\tex\latex\oberdiek\refcount.sty
Package: refcount 2008/08/11 v3.1 Data extraction from references (HO)
)
(E:\CTEX\MiKTeX\tex\generic\oberdiek\gettitlestring.sty
Package: gettitlestring 2009/12/18 v1.3 Cleanup title references (HO)
)
\c@section@level=\count167
)
LaTeX Info: Redefining \ref on input line 27.
LaTeX Info: Redefining \pageref on input line 27.
(E:\PHD_thesis_template\LingPhDThesis.out)
(E:\PHD_thesis_template\LingPhDThesis.out)
\@outlinefile=\write4
\AtBeginShipoutBox=\box45
Package hyperref Warning: Rerun to get /PageLabels entry.
(E:\CTEX\MiKTeX\tex\latex\cjk\standard.bdg
File: standard.bdg 2008/12/29 4.8.2
)
(E:\CTEX\MiKTeX\tex\latex\cjk\extended.enc
File: extended.enc 2008/12/29 4.8.2
)
(E:\CTEX\MiKTeX\tex\latex\cjk\extended.chr
File: extended.chr 2008/12/29 4.8.2
)
<<<<<<< HEAD
Package Fancyhdr Warning: \headheight is too small (12.0pt):
Make it at least 12.64998pt.
We now make it that large for the rest of the document.
This may cause the page layout to be inconsistent, however.
[1
] [2
] [3] [4
] (E:\PHD_thesis_template\Chapters/abstract.tex
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) \hskip 12.05pt
(hyperref) replaced by space on input line 7.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) \hskip 12.05pt
(hyperref) replaced by space on input line 7.
LaTeX Font Info: Try loading font information for C19+zhhei on input line 7.
(E:\CTEX\CTeX\tex\latex\zhmetrics\c19zhhei.fd
File: c19zhhei.fd 2009/09/23 4.8.2
)
Package CJKpunct Info: punctuation spaces for family 'zhhei' do not exist. Use
family 'def' instead. on input line 10.
LaTeX Font Info: Try loading font information for C19+rm on input line 10.
(E:\CTEX\CTeX\tex\latex\ctex\fd\c19rm.fd
File: c19rm.fd 2007/05/06 v0.8a ctex font definition file
) [1
] [2
]) [3] [4
]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) \hskip 12.05pt
(hyperref) replaced by space on input line 75.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) \hskip 12.05pt
(hyperref) replaced by space on input line 75.
(E:\PHD_thesis_template\LingPhDThesis.toc)
\tf@toc=\write5
[5] [6
]
(E:\PHD_thesis_template\LingPhDThesis.lot)
\tf@lot=\write6
[7] [8
]
(E:\PHD_thesis_template\LingPhDThesis.lof)
\tf@lof=\write7
[9] [10
]
(E:\PHD_thesis_template\Chapters/chapter2.tex
Runaway argument?
! Paragraph ended before \CJK@XX was complete.
<to be read again>
\par
l.4
? x
Here is how much of TeX's memory you used:
16678 strings out of 495285
269605 string characters out of 3181588
331000 words of memory out of 3000000
19411 multiletter control sequences out of 15000+200000
11217 words of font info for 40 fonts, out of 3000000 for 9000
14 hyphenation exceptions out of 8191
54i,11n,51p,475b,832s stack positions out of 5000i,500n,10000p,200000b,50000s
<C:/WINDOWS/Fonts/simhei.ttf><C:/WINDOWS/Fonts/simhei.ttf><C:/WINDOWS/Fonts/sim
hei.ttf><C:/WINDOWS/Fonts/simhei.ttf><C:/WINDOWS/Fonts/simhei.ttf><C:/WINDOWS/F
onts/simhei.ttf><C:/WINDOWS/Fonts/simsun.ttc><C:/WINDOWS/Fonts/simsun.ttc><C:/W
INDOWS/Fonts/simsun.ttc><C:/WINDOWS/Fonts/simhei.ttf><C:/WINDOWS/Fonts/simhei.t
tf><C:/WINDOWS/Fonts/simhei.ttf><C:/WINDOWS/Fonts/simhei.ttf><C:/WINDOWS/Fonts/
simhei.ttf><C:/WINDOWS/Fonts/simhei.ttf><E:/CTEX/MiKTeX/fonts/type1/public/amsf
onts/cm/cmbx12.pfb><E:/CTEX/MiKTeX/fonts/type1/public/amsfonts/cm/cmr10.pfb><E:
/CTEX/MiKTeX/fonts/type1/public/amsfonts/cm/cmr12.pfb>
Output written on LingPhDThesis.pdf (14 pages, 90904 bytes).
PDF statistics:
160 PDF objects out of 1000 (max. 8388607)
20 named destinations out of 1000 (max. 500000)
29 words of extra memory for PDF output out of 10000 (max. 10000000)
=======
LaTeX Font Info: Try loading font information for C19+zhkai on input line 45
.
(E:\CTEX\CTeX\tex\latex\zhmetrics\c19zhkai.fd
File: c19zhkai.fd 2009/09/23 4.8.2
)
Package CJKpunct Info: punctuation spaces for family 'zhkai' do not exist. Use
family 'def' instead. on input line 45.
File: figures/ZJU.eps Graphic file (type eps)
<figures/ZJU.eps>
File: figures/ZJULOGO.eps Graphic file (type eps)
<figures/ZJULOGO.eps>
LaTeX Font Info: Try loading font information for C19+zhhei on input line 45
.
(E:\CTEX\CTeX\tex\latex\zhmetrics\c19zhhei.fd
File: c19zhhei.fd 2009/09/23 4.8.2
)
Package CJKpunct Info: punctuation spaces for family 'zhhei' do not exist. Use
family 'def' instead. on input line 45.
! Undefined control sequence.
\CAST@value@Title ...é线æ§ç©éµæ¹ç¨çæ°å
¼ç®æ³ç ç©¶
l.45 \maketitle
? X
Here is how much of TeX's memory you used:
16422 strings out of 495286
268671 string characters out of 3181610
332441 words of memory out of 3000000
19193 multiletter control sequences out of 15000+200000
14940 words of font info for 53 fonts, out of 3000000 for 9000
14 hyphenation exceptions out of 8191
54i,5n,51p,475b,658s stack positions out of 5000i,500n,10000p,200000b,50000s
No pages of output.
>>>>>>> 729dd2b5659eab8b22e3815e435b18bc8fd3a836