-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.log
1488 lines (1241 loc) · 45.9 KB
/
main.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is XeTeX, Version 3.141592653-2.6-0.999996 (MiKTeX 24.4) (preloaded format=xelatex 2024.6.14) 29 JUL 2024 09:52
entering extended mode
restricted \write18 enabled.
file:line:error style messages enabled.
%&-line parsing enabled.
**e:/桌面/intern_report/main.tex
(e:/桌面/intern_report/main.tex
LaTeX2e <2024-06-01> patch level 1
L3 programming layer <2024-05-27>
(nwputhesis.cls
Document Class: nwputhesis 2023/6/19 v0.7.2 Standard LaTeX Template for NWPU th
esis
(D:\Program Files (x86)\MiKTex\tex/latex/ctex\ctexart.cls
(D:\Program Files (x86)\MiKTex\tex/latex/ctex/config\ctexbackend.cfg
File: ctexbackend.cfg 2022/07/14 v2.5.10 Backend configuration file (CTEX)
)
(D:\Program Files (x86)\MiKTex\tex/latex/l3kernel\expl3.sty
Package: expl3 2024-05-27 L3 programming layer (loader)
(D:\Program Files (x86)\MiKTex\tex/latex/l3backend\l3backend-xetex.def
File: l3backend-xetex.def 2024-05-08 L3 backend support: XeTeX
\g__graphics_track_int=\count190
\l__pdf_internal_box=\box52
\g__pdf_backend_annotation_int=\count191
\g__pdf_backend_link_int=\count192
))
Document Class: ctexart 2022/07/14 v2.5.10 Chinese adapter for class article (C
TEX)
(D:\Program Files (x86)\MiKTex\tex/latex/ctex\ctexhook.sty
Package: ctexhook 2022/07/14 v2.5.10 Document and package hooks (CTEX)
)
(D:\Program Files (x86)\MiKTex\tex/latex/ctex\ctexpatch.sty
Package: ctexpatch 2022/07/14 v2.5.10 Patching commands (CTEX)
)
(D:\Program Files (x86)\MiKTex\tex/latex/base\fix-cm.sty
Package: fix-cm 2020/11/24 v1.1t fixes to LaTeX
(D:\Program Files (x86)\MiKTex\tex/latex/base\ts1enc.def
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding TS1 on input line 47.
))
\l__ctex_tmp_int=\count193
\l__ctex_tmp_box=\box53
\l__ctex_tmp_dim=\dimen141
\g__ctex_section_depth_int=\count194
\g__ctex_font_size_int=\count195
(D:\Program Files (x86)\MiKTex\tex/latex/ctex/config\ctexopts.cfg
File: ctexopts.cfg 2022/07/14 v2.5.10 Option configuration file (CTEX)
)
(D:\Program Files (x86)\MiKTex\tex/latex/base\article.cls
Document Class: article 2024/02/08 v1.4n Standard LaTeX document class
(D:\Program Files (x86)\MiKTex\tex/latex/base\size12.clo
File: size12.clo 2024/02/08 v1.4n Standard LaTeX file (size option)
)
\c@part=\count196
\c@section=\count197
\c@subsection=\count198
\c@subsubsection=\count199
\c@paragraph=\count266
\c@subparagraph=\count267
\c@figure=\count268
\c@table=\count269
\abovecaptionskip=\skip49
\belowcaptionskip=\skip50
\bibindent=\dimen142
)
(D:\Program Files (x86)\MiKTex\tex/latex/ctex/engine\ctex-engine-xetex.def
File: ctex-engine-xetex.def 2022/07/14 v2.5.10 XeLaTeX adapter (CTEX)
(D:\Program Files (x86)\MiKTex\tex/xelatex/xecjk\xeCJK.sty
Package: xeCJK 2022/08/05 v3.9.1 Typesetting CJK scripts with XeLaTeX
(D:\Program Files (x86)\MiKTex\tex/latex/l3packages/xtemplate\xtemplate.sty
Package: xtemplate 2024-05-08 L3 Experimental prototype document functions
)
\l__xeCJK_tmp_int=\count270
\l__xeCJK_tmp_box=\box54
\l__xeCJK_tmp_dim=\dimen143
\l__xeCJK_tmp_skip=\skip51
\g__xeCJK_space_factor_int=\count271
\l__xeCJK_begin_int=\count272
\l__xeCJK_end_int=\count273
\c__xeCJK_CJK_class_int=\XeTeXcharclass1
\c__xeCJK_FullLeft_class_int=\XeTeXcharclass2
\c__xeCJK_FullRight_class_int=\XeTeXcharclass3
\c__xeCJK_HalfLeft_class_int=\XeTeXcharclass4
\c__xeCJK_HalfRight_class_int=\XeTeXcharclass5
\c__xeCJK_NormalSpace_class_int=\XeTeXcharclass6
\c__xeCJK_CM_class_int=\XeTeXcharclass7
\c__xeCJK_HangulJamo_class_int=\XeTeXcharclass8
\l__xeCJK_last_skip=\skip52
\c__xeCJK_none_node=\count274
\g__xeCJK_node_int=\count275
\c__xeCJK_CJK_node_dim=\dimen144
\c__xeCJK_CJK-space_node_dim=\dimen145
\c__xeCJK_default_node_dim=\dimen146
\c__xeCJK_CJK-widow_node_dim=\dimen147
\c__xeCJK_normalspace_node_dim=\dimen148
\c__xeCJK_default-space_node_skip=\skip53
\l__xeCJK_ccglue_skip=\skip54
\l__xeCJK_ecglue_skip=\skip55
\l__xeCJK_punct_kern_skip=\skip56
\l__xeCJK_indent_box=\box55
\l__xeCJK_last_penalty_int=\count276
\l__xeCJK_last_bound_dim=\dimen149
\l__xeCJK_last_kern_dim=\dimen150
\l__xeCJK_widow_penalty_int=\count277
LaTeX template Info: Declaring template type 'xeCJK/punctuation' taking 0
(template) argument(s) on line 2396.
\l__xeCJK_fixed_punct_width_dim=\dimen151
\l__xeCJK_mixed_punct_width_dim=\dimen152
\l__xeCJK_middle_punct_width_dim=\dimen153
\l__xeCJK_fixed_margin_width_dim=\dimen154
\l__xeCJK_mixed_margin_width_dim=\dimen155
\l__xeCJK_middle_margin_width_dim=\dimen156
\l__xeCJK_bound_punct_width_dim=\dimen157
\l__xeCJK_bound_margin_width_dim=\dimen158
\l__xeCJK_margin_minimum_dim=\dimen159
\l__xeCJK_kerning_total_width_dim=\dimen160
\l__xeCJK_same_align_margin_dim=\dimen161
\l__xeCJK_different_align_margin_dim=\dimen162
\l__xeCJK_kerning_margin_width_dim=\dimen163
\l__xeCJK_kerning_margin_minimum_dim=\dimen164
\l__xeCJK_bound_dim=\dimen165
\l__xeCJK_reverse_bound_dim=\dimen166
\l__xeCJK_margin_dim=\dimen167
\l__xeCJK_minimum_bound_dim=\dimen168
\l__xeCJK_kerning_margin_dim=\dimen169
\g__xeCJK_family_int=\count278
\l__xeCJK_fam_int=\count279
\g__xeCJK_fam_allocation_int=\count280
\l__xeCJK_verb_case_int=\count281
\l__xeCJK_verb_exspace_skip=\skip57
(D:\Program Files (x86)\MiKTex\tex/latex/fontspec\fontspec.sty
(D:\Program Files (x86)\MiKTex\tex/latex/l3packages/xparse\xparse.sty
Package: xparse 2024-05-08 L3 Experimental document command parser
)
Package: fontspec 2024/05/11 v2.9e Font selection for XeLaTeX and LuaLaTeX
(D:\Program Files (x86)\MiKTex\tex/latex/fontspec\fontspec-xetex.sty
Package: fontspec-xetex 2024/05/11 v2.9e Font selection for XeLaTeX and LuaLaTe
X
\l__fontspec_script_int=\count282
\l__fontspec_language_int=\count283
\l__fontspec_strnum_int=\count284
\l__fontspec_tmp_int=\count285
\l__fontspec_tmpa_int=\count286
\l__fontspec_tmpb_int=\count287
\l__fontspec_tmpc_int=\count288
\l__fontspec_em_int=\count289
\l__fontspec_emdef_int=\count290
\l__fontspec_strong_int=\count291
\l__fontspec_strongdef_int=\count292
\l__fontspec_tmpa_dim=\dimen170
\l__fontspec_tmpb_dim=\dimen171
\l__fontspec_tmpc_dim=\dimen172
(D:\Program Files (x86)\MiKTex\tex/latex/base\fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
)
(D:\Program Files (x86)\MiKTex\tex/latex/fontspec\fontspec.cfg)))
(D:\Program Files (x86)\MiKTex\tex/xelatex/xecjk\xeCJK.cfg
File: xeCJK.cfg 2022/08/05 v3.9.1 Configuration file for xeCJK package
))
\ccwd=\dimen173
\l__ctex_ccglue_skip=\skip58
)
\l__ctex_ziju_dim=\dimen174
(D:\Program Files (x86)\MiKTex\tex/latex/zhnumber\zhnumber.sty
Package: zhnumber 2022/07/14 v3.0 Typesetting numbers with Chinese glyphs
\l__zhnum_scale_int=\count293
\l__zhnum_tmp_int=\count294
(D:\Program Files (x86)\MiKTex\tex/latex/zhnumber\zhnumber-utf8.cfg
File: zhnumber-utf8.cfg 2022/07/14 v3.0 Chinese numerals with UTF8 encoding
))
\l__ctex_heading_skip=\skip59
(D:\Program Files (x86)\MiKTex\tex/latex/ctex/scheme\ctex-scheme-chinese-articl
e.def
File: ctex-scheme-chinese-article.def 2022/07/14 v2.5.10 Chinese scheme for art
icle (CTEX)
(D:\Program Files (x86)\MiKTex\tex/latex/ctex/config\ctex-name-utf8.cfg
File: ctex-name-utf8.cfg 2022/07/14 v2.5.10 Caption with encoding UTF-8 (CTEX)
))) (D:\Program Files (x86)\MiKTex\tex/latex/ctex/config\ctex.cfg
File: ctex.cfg 2022/07/14 v2.5.10 Configuration file (CTEX)
)
(D:\Program Files (x86)\MiKTex\tex/generic/iftex\ifxetex.sty
Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead.
(D:\Program Files (x86)\MiKTex\tex/generic/iftex\iftex.sty
Package: iftex 2022/02/03 v1.0f TeX engine tests
))
(D:\Program Files (x86)\MiKTex\tex/latex/graphics\color.sty
Package: color 2024/01/14 v1.3d Standard LaTeX Color (DPC)
(D:\Program Files (x86)\MiKTex\tex/latex/graphics-cfg\color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: xetex.def on input line 149.
(D:\Program Files (x86)\MiKTex\tex/latex/graphics-def\xetex.def
File: xetex.def 2022/09/22 v5.0n Graphics/color driver for xetex
)
(D:\Program Files (x86)\MiKTex\tex/latex/graphics\mathcolor.ltx))
(D:\Program Files (x86)\MiKTex\tex/latex/tools\indentfirst.sty
Package: indentfirst 2023/07/02 v1.03 Indent first paragraph (DPC)
)
(D:\Program Files (x86)\MiKTex\tex/latex/enumitem\enumitem.sty
Package: enumitem 2019/06/20 v3.9 Customized lists
\enitkv@toks@=\toks17
\labelindent=\skip60
\enit@outerparindent=\dimen175
\enit@toks=\toks18
\enit@inbox=\box56
\enit@count@id=\count295
\enitdp@description=\count296
)
(D:\Program Files (x86)\MiKTex\tex/latex/fancyhdr\fancyhdr.sty
Package: fancyhdr 2024/04/23 v4.2 Extensive control of page headers and footers
\f@nch@headwidth=\skip61
\f@nch@O@elh=\skip62
\f@nch@O@erh=\skip63
\f@nch@O@olh=\skip64
\f@nch@O@orh=\skip65
\f@nch@O@elf=\skip66
\f@nch@O@erf=\skip67
\f@nch@O@olf=\skip68
\f@nch@O@orf=\skip69
)
Package fontspec Info:
(fontspec) Font family 'TimesNewRoman(0)' created for font 'Times
(fontspec) New Roman' with options [Ligatures=TeX].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Times New
(fontspec) Roman/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.: <->"Times New
(fontspec) Roman/OT:script=latn;language=dflt;+smcp;mapping=tex-tex
t;"
(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Times New
(fontspec) Roman/B/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: <->"Times
(fontspec) New
(fontspec) Roman/B/OT:script=latn;language=dflt;+smcp;mapping=tex-t
ext;"
(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Times New
(fontspec) Roman/I/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) <->"Times New
(fontspec) Roman/I/OT:script=latn;language=dflt;+smcp;mapping=tex-t
ext;"
(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Times New
(fontspec) Roman/BI/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
(fontspec) <->"Times New
(fontspec) Roman/BI/OT:script=latn;language=dflt;+smcp;mapping=tex-
text;"
Package fontspec Info:
(fontspec) Font family 'simsun.ttc(0)' created for font
(fontspec) 'simsun.ttc' with options
(fontspec) [Script={CJK},AutoFakeBold={4},AutoFakeSlant={0.167}].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <->"[simsun.ttc]/OT:script=hani;language=dflt;"
(fontspec) - 'bold' (b/n) with NFSS spec.:
(fontspec) <->"[simsun.ttc]/OT:script=hani;language=dflt;embolden=4
;"
(fontspec) - 'italic' (m/it) with NFSS spec.:
(fontspec) <->"[simsun.ttc]/OT:script=hani;language=dflt;slant=0.16
7;"
(fontspec) - 'bold italic' (b/it) with NFSS spec.:
(fontspec) <->"[simsun.ttc]/OT:script=hani;language=dflt;embolden=4
;slant=0.167;"
(D:\Program Files (x86)\MiKTex\tex/latex/setspace\setspace.sty
Package: setspace 2022/12/04 v6.7b set line spacing
)
(D:\Program Files (x86)\MiKTex\tex/latex/geometry\geometry.sty
Package: geometry 2020/01/02 v5.9 Page Geometry
(D:\Program Files (x86)\MiKTex\tex/latex/graphics\keyval.sty
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
\KV@toks@=\toks19
)
(D:\Program Files (x86)\MiKTex\tex/generic/iftex\ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
)
\Gm@cnth=\count297
\Gm@cntv=\count298
\c@Gm@tempcnt=\count299
\Gm@bindingoffset=\dimen176
\Gm@wd@mp=\dimen177
\Gm@odd@mp=\dimen178
\Gm@even@mp=\dimen179
\Gm@layoutwidth=\dimen180
\Gm@layoutheight=\dimen181
\Gm@layouthoffset=\dimen182
\Gm@layoutvoffset=\dimen183
\Gm@dimlist=\toks20
(D:\Program Files (x86)\MiKTex\tex/latex/geometry\geometry.cfg))
(D:\Program Files (x86)\MiKTex\tex/latex/titlesec\titlesec.sty
Package: titlesec 2023/10/27 v2.16 Sectioning titles
\ttl@box=\box57
\beforetitleunit=\skip70
\aftertitleunit=\skip71
\ttl@plus=\dimen184
\ttl@minus=\dimen185
\ttl@toksa=\toks21
\titlewidth=\dimen186
\titlewidthlast=\dimen187
\titlewidthfirst=\dimen188
)
(D:\Program Files (x86)\MiKTex\tex/latex/titlesec\titletoc.sty
Package: titletoc 2023/10/27 v2.16 TOC entries
\ttl@leftsep=\dimen189
)
(D:\Program Files (x86)\MiKTex\tex/latex/hyperref\hyperref.sty
Package: hyperref 2024-05-23 v7.01i Hypertext links for LaTeX
(D:\Program Files (x86)\MiKTex\tex/latex/kvsetkeys\kvsetkeys.sty
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
)
(D:\Program Files (x86)\MiKTex\tex/generic/kvdefinekeys\kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(D:\Program Files (x86)\MiKTex\tex/generic/pdfescape\pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
(D:\Program Files (x86)\MiKTex\tex/generic/ltxcmds\ltxcmds.sty
Package: ltxcmds 2023-12-04 v1.26 LaTeX kernel commands for general use (HO)
)
(D:\Program Files (x86)\MiKTex\tex/generic/pdftexcmds\pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
(D:\Program Files (x86)\MiKTex\tex/generic/infwarerr\infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode not found.
))
(D:\Program Files (x86)\MiKTex\tex/latex/hycolor\hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(D:\Program Files (x86)\MiKTex\tex/latex/hyperref\nameref.sty
Package: nameref 2023-11-26 v2.56 Cross-referencing by name of section
(D:\Program Files (x86)\MiKTex\tex/latex/refcount\refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(D:\Program Files (x86)\MiKTex\tex/generic/gettitlestring\gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
(D:\Program Files (x86)\MiKTex\tex/latex/kvoptions\kvoptions.sty
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
))
\c@section@level=\count300
)
(D:\Program Files (x86)\MiKTex\tex/latex/etoolbox\etoolbox.sty
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count301
)
(D:\Program Files (x86)\MiKTex\tex/generic/stringenc\stringenc.sty
Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO
)
)
\@linkdim=\dimen190
\Hy@linkcounter=\count302
\Hy@pagecounter=\count303
(D:\Program Files (x86)\MiKTex\tex/latex/hyperref\pd1enc.def
File: pd1enc.def 2024-05-23 v7.01i Hyperref: PDFDocEncoding definition (HO)
)
(D:\Program Files (x86)\MiKTex\tex/generic/intcalc\intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
\Hy@SavedSpaceFactor=\count304
(D:\Program Files (x86)\MiKTex\tex/latex/hyperref\puenc.def
File: puenc.def 2024-05-23 v7.01i Hyperref: PDF Unicode definition (HO)
)
Package hyperref Info: Option `unicode' set `true' on input line 4040.
Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 4040
.
Package hyperref Info: Option `bookmarksopen' set `true' on input line 4040.
Package hyperref Info: Hyper figures OFF on input line 4157.
Package hyperref Info: Link nesting OFF on input line 4162.
Package hyperref Info: Hyper index ON on input line 4165.
Package hyperref Info: Plain pages OFF on input line 4172.
Package hyperref Info: Backreferencing OFF on input line 4177.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4424.
\c@Hy@tempcnt=\count305
(D:\Program Files (x86)\MiKTex\tex/latex/url\url.sty
\Urlmuskip=\muskip17
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4763.
\XeTeXLinkMargin=\dimen191
(D:\Program Files (x86)\MiKTex\tex/generic/bitset\bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(D:\Program Files (x86)\MiKTex\tex/generic/bigintcalc\bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count306
\Field@Width=\dimen192
\Fld@charsize=\dimen193
Package hyperref Info: Hyper figures OFF on input line 6042.
Package hyperref Info: Link nesting OFF on input line 6047.
Package hyperref Info: Hyper index ON on input line 6050.
Package hyperref Info: backreferencing OFF on input line 6057.
Package hyperref Info: Link coloring OFF on input line 6062.
Package hyperref Info: Link coloring with OCG OFF on input line 6067.
Package hyperref Info: PDF/A mode OFF on input line 6072.
(D:\Program Files (x86)\MiKTex\tex/latex/base\atbegshi-ltx.sty
Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
package with kernel methods
)
\Hy@abspage=\count307
\c@Item=\count308
\c@Hfootnote=\count309
)
Package hyperref Info: Driver (autodetected): hxetex.
(D:\Program Files (x86)\MiKTex\tex/latex/hyperref\hxetex.def
File: hxetex.def 2024-05-23 v7.01i Hyperref driver for XeTeX
\pdfm@box=\box58
\c@Hy@AnnotLevel=\count310
\HyField@AnnotCount=\count311
\Fld@listcount=\count312
\c@bookmark@seq@number=\count313
(D:\Program Files (x86)\MiKTex\tex/latex/rerunfilecheck\rerunfilecheck.sty
Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)
(D:\Program Files (x86)\MiKTex\tex/latex/base\atveryend-ltx.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend pac
kage
with kernel methods
)
(D:\Program Files (x86)\MiKTex\tex/generic/uniquecounter\uniquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
85.
)
\Hy@SectionHShift=\skip72
)
(D:\Program Files (x86)\MiKTex\tex/latex/amsmath\amsmath.sty
Package: amsmath 2024/05/23 v2.17q AMS math features
\@mathmargin=\skip73
For additional information on amsmath, use the `?' option.
(D:\Program Files (x86)\MiKTex\tex/latex/amsmath\amstext.sty
Package: amstext 2021/08/26 v2.01 AMS text
(D:\Program Files (x86)\MiKTex\tex/latex/amsmath\amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks22
\ex@=\dimen194
))
(D:\Program Files (x86)\MiKTex\tex/latex/amsmath\amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen195
)
(D:\Program Files (x86)\MiKTex\tex/latex/amsmath\amsopn.sty
Package: amsopn 2022/04/08 v2.04 operator names
)
\inf@bad=\count314
LaTeX Info: Redefining \frac on input line 233.
\uproot@=\count315
\leftroot@=\count316
LaTeX Info: Redefining \overline on input line 398.
LaTeX Info: Redefining \colon on input line 409.
\classnum@=\count317
\DOTSCASE@=\count318
LaTeX Info: Redefining \ldots on input line 495.
LaTeX Info: Redefining \dots on input line 498.
LaTeX Info: Redefining \cdots on input line 619.
\Mathstrutbox@=\box59
\strutbox@=\box60
LaTeX Info: Redefining \big on input line 721.
LaTeX Info: Redefining \Big on input line 722.
LaTeX Info: Redefining \bigg on input line 723.
LaTeX Info: Redefining \Bigg on input line 724.
\big@size=\dimen196
LaTeX Font Info: Redeclaring font encoding OML on input line 742.
LaTeX Font Info: Redeclaring font encoding OMS on input line 743.
\macc@depth=\count319
LaTeX Info: Redefining \bmod on input line 904.
LaTeX Info: Redefining \pmod on input line 909.
LaTeX Info: Redefining \smash on input line 939.
LaTeX Info: Redefining \relbar on input line 969.
LaTeX Info: Redefining \Relbar on input line 970.
\c@MaxMatrixCols=\count320
\dotsspace@=\muskip18
\c@parentequation=\count321
\dspbrk@lvl=\count322
\tag@help=\toks23
\row@=\count323
\column@=\count324
\maxfields@=\count325
\andhelp@=\toks24
\eqnshift@=\dimen197
\alignsep@=\dimen198
\tagshift@=\dimen199
\tagwidth@=\dimen256
\totwidth@=\dimen257
\lineht@=\dimen258
\@envbody=\toks25
\multlinegap=\skip74
\multlinetaggap=\skip75
\mathdisplay@stack=\toks26
LaTeX Info: Redefining \[ on input line 2953.
LaTeX Info: Redefining \] on input line 2954.
)
(D:\Program Files (x86)\MiKTex\tex/latex/amsfonts\amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
)
(D:\Program Files (x86)\MiKTex\tex/latex/amsfonts\amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
)
(D:\Program Files (x86)\MiKTex\tex/latex/tools\bm.sty
Package: bm 2023/12/19 v1.2f Bold Symbol Support (DPC/FMi)
\symboldoperators=\mathgroup6
\symboldletters=\mathgroup7
\symboldsymbols=\mathgroup8
Package bm Info: No bold for \OMX/cmex/m/n, using \pmb.
Package bm Info: No bold for \U/msa/m/n, using \pmb.
Package bm Info: No bold for \U/msb/m/n, using \pmb.
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 149.
)
(D:\Program Files (x86)\MiKTex\tex/latex/tools\array.sty
Package: array 2024/05/23 v2.6c Tabular extension package (FMi)
\col@sep=\dimen259
\ar@mcellbox=\box61
\extrarowheight=\dimen260
\NC@list=\toks27
\extratabsurround=\skip76
\backup@length=\skip77
\ar@cellbox=\box62
)
(D:\Program Files (x86)\MiKTex\tex/latex/float\float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count326
\float@exts=\toks28
\float@box=\box63
\@float@everytoks=\toks29
\@floatcapt=\box64
)
(D:\Program Files (x86)\MiKTex\tex/latex/tools\tabularx.sty
Package: tabularx 2023/12/11 v2.12a `tabularx' package (DPC)
\TX@col@width=\dimen261
\TX@old@table=\dimen262
\TX@old@col=\dimen263
\TX@target=\dimen264
\TX@delta=\dimen265
\TX@cols=\count327
\TX@ftn=\toks30
)
(D:\Program Files (x86)\MiKTex\tex/latex/makecell\makecell.sty
Package: makecell 2009/08/03 V0.1e Managing of Tab Column Heads and Cells
\rotheadsize=\dimen266
\c@nlinenum=\count328
\TeXr@lab=\toks31
)
(D:\Program Files (x86)\MiKTex\tex/latex/tablefootnote\tablefootnote.sty
Package: tablefootnote 2014/01/26 v1.1c Table foot notes (HMM)
(D:\Program Files (x86)\MiKTex\tex/latex/letltxmacro\letltxmacro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(D:\Program Files (x86)\MiKTex\tex/latex/xifthen\xifthen.sty
Package: xifthen 2015/11/05 v1.4.0 Extended ifthen features
(D:\Program Files (x86)\MiKTex\tex/latex/tools\calc.sty
Package: calc 2023/07/08 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count329
\calc@Bcount=\count330
\calc@Adimen=\dimen267
\calc@Bdimen=\dimen268
\calc@Askip=\skip78
\calc@Bskip=\skip79
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count331
\calc@Cskip=\skip80
)
(D:\Program Files (x86)\MiKTex\tex/latex/base\ifthen.sty
Package: ifthen 2024/03/16 v1.1e Standard LaTeX ifthen package (DPC)
)
(D:\Program Files (x86)\MiKTex\tex/latex/ifmtarg\ifmtarg.sty
Package: ifmtarg 2018/04/16 v1.2b check for an empty argument
)))
(D:\Program Files (x86)\MiKTex\tex/latex/multirow\multirow.sty
Package: multirow 2021/03/15 v2.8 Span multiple rows of a table
\multirow@colwidth=\skip81
\multirow@cntb=\count332
\multirow@dima=\skip82
\bigstrutjot=\dimen269
)
(D:\Program Files (x86)\MiKTex\tex/latex/booktabs\booktabs.sty
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen270
\lightrulewidth=\dimen271
\cmidrulewidth=\dimen272
\belowrulesep=\dimen273
\belowbottomsep=\dimen274
\aboverulesep=\dimen275
\abovetopsep=\dimen276
\cmidrulesep=\dimen277
\cmidrulekern=\dimen278
\defaultaddspace=\dimen279
\@cmidla=\count333
\@cmidlb=\count334
\@aboverulesep=\dimen280
\@belowrulesep=\dimen281
\@thisruleclass=\count335
\@lastruleclass=\count336
\@thisrulewidth=\dimen282
)
(D:\Program Files (x86)\MiKTex\tex/latex/tools\longtable.sty
Package: longtable 2024-04-26 v4.20 Multi-page Table package (DPC)
\LTleft=\skip83
\LTright=\skip84
\LTpre=\skip85
\LTpost=\skip86
\LTchunksize=\count337
\LTcapwidth=\dimen283
\LT@head=\box65
\LT@firsthead=\box66
\LT@foot=\box67
\LT@lastfoot=\box68
\LT@gbox=\box69
\LT@cols=\count338
\LT@rows=\count339
\c@LT@tables=\count340
\c@LT@chunks=\count341
\LT@p@ftn=\toks32
)
(D:\Program Files (x86)\MiKTex\tex/latex/graphics\graphicx.sty
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
(D:\Program Files (x86)\MiKTex\tex/latex/graphics\graphics.sty
Package: graphics 2024/05/23 v1.4g Standard LaTeX Graphics (DPC,SPQR)
(D:\Program Files (x86)\MiKTex\tex/latex/graphics\trig.sty
Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
)
(D:\Program Files (x86)\MiKTex\tex/latex/graphics-cfg\graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: xetex.def on input line 106.
)
\Gin@req@height=\dimen284
\Gin@req@width=\dimen285
)
(D:\Program Files (x86)\MiKTex\tex/latex/caption\caption.sty
Package: caption 2023/08/05 v3.6o Customizing captions (AR)
(D:\Program Files (x86)\MiKTex\tex/latex/caption\caption3.sty
Package: caption3 2023/07/31 v2.4d caption3 kernel (AR)
\caption@tempdima=\dimen286
\captionmargin=\dimen287
\caption@leftmargin=\dimen288
\caption@rightmargin=\dimen289
\caption@width=\dimen290
\caption@indent=\dimen291
\caption@parindent=\dimen292
\caption@hangindent=\dimen293
Package caption Info: Standard document class detected.
)
\c@caption@flags=\count342
\c@continuedfloat=\count343
Package caption Info: float package is loaded.
Package caption Info: hyperref package is loaded.
Package caption Info: longtable package is loaded.
(D:\Program Files (x86)\MiKTex\tex/latex/caption\ltcaption.sty
Package: ltcaption 2021/01/08 v1.4c longtable captions (AR)
))
(D:\Program Files (x86)\MiKTex\tex/latex/caption\subcaption.sty
Package: subcaption 2023/07/28 v1.6b Sub-captions (AR)
Package caption Info: New subtype `subfigure' on input line 238.
\c@subfigure=\count344
Package caption Info: New subtype `subtable' on input line 238.
\c@subtable=\count345
)
(D:\Program Files (x86)\MiKTex\tex/latex/chngcntr\chngcntr.sty
Package: chngcntr 2018/04/09 v1.1a change counter resetting
Package chngcntr Info: \counterwithout already defined.
(chngcntr) Quitting chngcntr on input line 21.
)
(D:\Program Files (x86)\MiKTex\tex/latex/algorithms\algorithm.sty
Invalid UTF-8 byte or sequence at line 11 replaced by U+FFFD.
Package: algorithm 2009/08/24 v0.1 Document Style `algorithm' - floating enviro
nment
\@float@every@algorithm=\toks33
\c@algorithm=\count346
)
(D:\Program Files (x86)\MiKTex\tex/latex/algorithms\algorithmic.sty
Invalid UTF-8 byte or sequence at line 11 replaced by U+FFFD.
Package: algorithmic 2009/08/24 v0.1 Document Style `algorithmic'
\c@ALC@unique=\count347
\c@ALC@line=\count348
\c@ALC@rem=\count349
\c@ALC@depth=\count350
\ALC@tlm=\skip87
\algorithmicindent=\skip88
))
(D:\Program Files (x86)\MiKTex\tex/latex/gbt7714\gbt7714.sty
Package: gbt7714 2022/10/03 v2.1.5 GB/T 7714 BibTeX Style
(D:\Program Files (x86)\MiKTex\tex/latex/natbib\natbib.sty
Package: natbib 2010/09/13 8.31b (PWD, AO)
\bibhang=\skip89
\bibsep=\skip90
LaTeX Info: Redefining \cite on input line 694.
\c@NAT@ctr=\count351
))
(D:\Program Files (x86)\MiKTex\tex/latex/listings\listings.sty
\lst@mode=\count352
\lst@gtempboxa=\box70
\lst@token=\toks34
\lst@length=\count353
\lst@currlwidth=\dimen294
\lst@column=\count354
\lst@pos=\count355
\lst@lostspace=\dimen295
\lst@width=\dimen296
\lst@newlines=\count356
\lst@lineno=\count357
\lst@maxwidth=\dimen297
(D:\Program Files (x86)\MiKTex\tex/latex/listings\lstpatch.sty
File: lstpatch.sty 2024/05/25 1.10b (Carsten Heinz)
)
(D:\Program Files (x86)\MiKTex\tex/latex/listings\lstmisc.sty
File: lstmisc.sty 2024/05/25 1.10b (Carsten Heinz)
\c@lstnumber=\count358
\lst@skipnumbers=\count359
\lst@framebox=\box71
)
(D:\Program Files (x86)\MiKTex\tex/latex/listings\listings.cfg
File: listings.cfg 2024/05/25 1.10b listings configuration
))
Package: listings 2024/05/25 1.10b (Carsten Heinz)
(D:\Program Files (x86)\MiKTex\tex/xelatex/xecjk\xeCJK-listings.sty
Package: xeCJK-listings 2022/08/05 v3.9.1 xeCJK patch file for listings
\l__xeCJK_listings_max_char_int=\count360
\l__xeCJK_listings_flag_int=\count361
) (main.aux)
\openout1 = `main.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 8.
LaTeX Font Info: ... okay on input line 8.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 8.
LaTeX Font Info: ... okay on input line 8.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 8.
LaTeX Font Info: ... okay on input line 8.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 8.
LaTeX Font Info: ... okay on input line 8.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 8.
LaTeX Font Info: ... okay on input line 8.
LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 8.
LaTeX Font Info: ... okay on input line 8.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 8.
LaTeX Font Info: ... okay on input line 8.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 8.
LaTeX Font Info: ... okay on input line 8.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 8.
LaTeX Font Info: ... okay on input line 8.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 8.
LaTeX Font Info: ... okay on input line 8.
Package fontspec Info:
(fontspec) Adjusting the maths setup (use [no-math] to avoid
(fontspec) this).
\symlegacymaths=\mathgroup9
LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold'
(Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 8.
LaTeX Font Info: Redeclaring math accent \acute on input line 8.
LaTeX Font Info: Redeclaring math accent \grave on input line 8.
LaTeX Font Info: Redeclaring math accent \ddot on input line 8.
LaTeX Font Info: Redeclaring math accent \tilde on input line 8.
LaTeX Font Info: Redeclaring math accent \bar on input line 8.
LaTeX Font Info: Redeclaring math accent \breve on input line 8.
LaTeX Font Info: Redeclaring math accent \check on input line 8.
LaTeX Font Info: Redeclaring math accent \hat on input line 8.
LaTeX Font Info: Redeclaring math accent \dot on input line 8.
LaTeX Font Info: Redeclaring math accent \mathring on input line 8.
LaTeX Font Info: Redeclaring math symbol \Gamma on input line 8.
LaTeX Font Info: Redeclaring math symbol \Delta on input line 8.
LaTeX Font Info: Redeclaring math symbol \Theta on input line 8.
LaTeX Font Info: Redeclaring math symbol \Lambda on input line 8.
LaTeX Font Info: Redeclaring math symbol \Xi on input line 8.
LaTeX Font Info: Redeclaring math symbol \Pi on input line 8.
LaTeX Font Info: Redeclaring math symbol \Sigma on input line 8.
LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 8.
LaTeX Font Info: Redeclaring math symbol \Phi on input line 8.
LaTeX Font Info: Redeclaring math symbol \Psi on input line 8.
LaTeX Font Info: Redeclaring math symbol \Omega on input line 8.
LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 8.
LaTeX Font Info: Redeclaring symbol font `operators' on input line 8.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `normal' on input line 8.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> TU/TimesNewRoman(0)/m/n on input line 8
.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `bold' on input line 8.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> TU/TimesNewRoman(0)/m/n on input line
8.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) TU/TimesNewRoman(0)/m/n --> TU/TimesNewRoman(0)/m/n on
input line 8.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> TU/TimesNewRoman(0)/m/it on input line
8.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> TU/TimesNewRoman(0)/b/n on input line
8.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 8.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 8.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) TU/TimesNewRoman(0)/m/n --> TU/TimesNewRoman(0)/b/n on
input line 8.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> TU/TimesNewRoman(0)/b/it on input lin
e 8.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> TU/lmss/b/n on input line 8.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> TU/lmtt/b/n on input line 8.
*geometry* driver: auto-detecting
*geometry* detected driver: xetex
*geometry* verbose mode - [ preamble ] result:
* driver: xetex
* paper: a4paper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes:
* h-part:(L,W,R)=(90.47977pt, 416.54834pt, 90.47977pt)
* v-part:(T,H,B)=(72.26997pt, 700.5069pt, 72.26997pt)
* \paperwidth=597.50787pt
* \paperheight=845.04684pt
* \textwidth=416.54834pt
* \textheight=700.5069pt
* \oddsidemargin=18.20978pt
* \evensidemargin=18.20978pt
* \topmargin=-34.00002pt
* \headheight=27.0pt
* \headsep=7.0pt
* \topskip=12.0pt
* \footskip=30.0pt
* \marginparwidth=44.0pt
* \marginparsep=10.0pt
* \columnsep=10.0pt
* \skip\footins=10.8pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidefalse
* \@mparswitchfalse
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
Package hyperref Info: Link coloring OFF on input line 8.
(main.out) (main.out)
\@outlinefile=\write3
\openout3 = `main.out'.
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: listings package is loaded.
Package caption Info: End \AtBeginDocument code.
\c@lstlisting=\count362
[1
]
Package fontspec Info:
(fontspec) Font family 'simhei.ttf(0)' created for font
(fontspec) 'simhei.ttf' with options [Script={CJK}].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <->"[simhei.ttf]/OT:script=hani;language=dflt;"
(main.toc
LaTeX Font Info: Trying to load font information for U+msa on input line 1.
(D:\Program Files (x86)\MiKTex\tex/latex/amsfonts\umsa.fd
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
)
LaTeX Font Info: Trying to load font information for U+msb on input line 1.
(D:\Program Files (x86)\MiKTex\tex/latex/amsfonts\umsb.fd
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
)
File: ./picture/1.png Graphic file (type bmp)
<./picture/1.png>
[2]
File: ./picture/1.png Graphic file (type bmp)
<./picture/1.png>
[3])
\tf@toc=\write4
\openout4 = `main.toc'.
File: ./picture/1.png Graphic file (type bmp)
<./picture/1.png>
[4]
File: ./picture/1.png Graphic file (type bmp)
<./picture/1.png>
[1]
File: ./picture/1.png Graphic file (type bmp)
<./picture/1.png>
[2]
File: ./picture/1.png Graphic file (type bmp)
<./picture/1.png>
[3]
File: picture/2.png Graphic file (type bmp)
<picture/2.png>
File: ./picture/1.png Graphic file (type bmp)
<./picture/1.png>
[4]
File: picture/3.png Graphic file (type bmp)
<picture/3.png>
File: ./picture/1.png Graphic file (type bmp)
<./picture/1.png>
[5]
File: picture/4.png Graphic file (type bmp)
<picture/4.png>
File: ./picture/1.png Graphic file (type bmp)
<./picture/1.png>
[6]
File: ./picture/1.png Graphic file (type bmp)
<./picture/1.png>
[7]
Overfull \hbox (12.32762pt too wide) in paragraph at lines 160--168
[]\TU/simsun.ttc(0)/m/n/12 简 单 一 点 理 解 可 以 把 \TU/TimesNewRoman(0)/b/n/12 NeRF \
TU/simsun.ttc(0)/m/n/12 看 作 是 用 \TU/simsun.ttc(0)/b/n/12 深 度 全 连 接 神 经 网 络 |\T
U/simsun.ttc(0)/m/n/12 (\TU/TimesNewRoman(0)/m/n/12 deep fully-connected
[]
Overfull \hbox (5.4193pt too wide) detected at line 196
[][][][][]
[]