K_Doxygen入门


安装介绍

  相关的安装介绍网上有很多,再此不再赘述,具体可见:

相关问题

编译dot错误

1
2
3
4
error: Problems running dot: exit code=1, command=
error: problems opening map file E:/ATY/ATY/Library/Code/STM/ATYSTMLIB_HAL/ATY_H/html/_c_r_c___a_t_y_8h__incl.map for inclusion in the docs!
If you installed Graphviz/dot after a previous failing run,
try deleting the output directory and rerun doxygen.

把Graphviz 1.44.2 安装目录改为Graphviz,系统环境变量查看是否添加Graphviz目录,注销运行cmd。
C:\Users\AaronTempletonYin>dot -v

1
2
3
dot - graphviz version 2.44.1 (20200629.0846)
There is no layout engine support for "dot"
Perhaps "dot -c" needs to be run (with installer's privileges) to register the plugins?

C:\Users\AaronTempletonYin>dot -c
C:\Users\AaronTempletonYin>dot -v

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
dot - graphviz version 2.44.1 (20200629.0846)
libdir = "D:\Graphviz\bin"
Activated plugin library: gvplugin_dot_layout.dll
Using layout: dot:dot_layout
Activated plugin library: gvplugin_core.dll
Using render: dot:core
Using device: dot:dot:core
The plugin configuration file:
D:\Graphviz\bin\config6
was successfully loaded.
render : cairo dot dot_json fig gdiplus json json0 map mp pic ps svg tk vml xdot xdot_json
layout : circo dot fdp neato nop nop1 nop2 osage patchwork sfdp twopi
textlayout : textlayout
device : bmp canon cmap cmapx cmapx_np dot dot_json emf emfplus eps fig gif gv imap imap_np ismap jpe jpeg jpg json json0 metafile mp pdf pic plain plain-ext png ps ps2 svg tif tiff tk vml xdot xdot1.2 xdot1.4 xdot_json
loadimage : (lib) bmp eps gif jpe jpeg jpg png ps svg


error: Failed to rename file E:/ATY/ATY/Library/Code/STM/ATYSTMLIB_HAL/ATY_H/latex/_c_r_c___a_t_y_8h.tex to E:/ATY/ATY/Library/Code/STM/ATYSTMLIB_HAL/ATY_H/latex/_c_r_c___a_t_y_8h.tex.tmp!

再次编译没有错误。

html help错误

1
2
Running html help compiler...
error: failed to run html help compiler on index.hhp

  尝试在管理员权限下输入regsvr32 “HTML Help Workshp程序目录\itcc.dll”
  即管理员cmd或powershell运行regsvr32 D:\HTMLHelpWorkshop\itcc.dll,提示注册成功即可。
  依然提示错误。

实际测试下chm会生成,也会更新,就只是提示一个错误,不影响正常使用。

ctex中Miktex报错xcolor.sty not found

  出现这个报错的原因是安装的miktex不能自动更新package,这就很尴尬,就相当于是一个单机版的。因此得需要重装一个miktex就好,安装完成之后再编译使用ctex编译tex文件会出现这个窗口,就说明安装成功了,然后就可以自动更新包了:


>个人更新包提示
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
E:\ATY\ATY\Library\Code\STM\ATYSTMLIB_HAL\ATY_H\latex>set Dir_Old=E:\ATY\ATY\Library\Code\STM\ATYSTMLIB_HAL\ATY_H\latex

E:\ATY\ATY\Library\Code\STM\ATYSTMLIB_HAL\ATY_H\latex>cd /D E:\ATY\ATY\Library\Code\STM\ATYSTMLIB_HAL\ATY_H\latex\

E:\ATY\ATY\Library\Code\STM\ATYSTMLIB_HAL\ATY_H\latex>del /s /f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf
删除文件 - E:\ATY\ATY\Library\Code\STM\ATYSTMLIB_HAL\ATY_H\latex\refman.log

E:\ATY\ATY\Library\Code\STM\ATYSTMLIB_HAL\ATY_H\latex>set LATEX_CMD=pdflatex

E:\ATY\ATY\Library\Code\STM\ATYSTMLIB_HAL\ATY_H\latex>pdflatex refman
This is pdfTeX, Version 3.14159265-2.6-1.40.21 (MiKTeX 20.6.29)
entering extended mode
(refman.tex
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-06-18> (D:\MiKTeX\tex/latex/base\book.cls
Document Class: book 2019/12/20 v1.4l Standard LaTeX document class
(D:\MiKTeX\tex/latex/base\bk10.clo)) (D:\MiKTeX\tex/latex/base\ifthen.sty)
(D:\MiKTeX\tex/latex/tools\array.sty
(D:\MiKTeX\tex/latex/tools\array-2016-10-06.sty))
(D:\MiKTeX\tex/latex/base\fixltx2e.sty

Package fixltx2e Warning: fixltx2e is not required with releases after 2015
(fixltx2e) All fixes are now in the LaTeX kernel.
(fixltx2e) See the latexrelease package for details.

) (D:\MiKTeX\tex/latex/tools\calc.sty) (doxygen.sty
(D:\MiKTeX\tex/latex/base\alltt.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 127884 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/float.tar.lzma...
mpmsvc: 0.13 MB, 2.41 Mbit/s
mpmsvc: extracting files from float.tar.lzma...
======================================================================
(D:\MiKTeX\tex/latex/float\float.sty)
(D:\MiKTeX\tex/latex/tools\verbatim.sty) (D:\MiKTeX\tex/latex/xcolor\xcolor.sty
(D:\MiKTeX\tex/latex/graphics-cfg\color.cfg)
(D:\MiKTeX\tex/latex/graphics-def\pdftex.def)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 607791 bytes
mpmsvc: going to install 6 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/colortbl.tar.lzma...
mpmsvc: 0.61 MB, 45.44 Mbit/s
mpmsvc: extracting files from colortbl.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/colortbl\colortbl.sty)) (longtable_doxygen.sty)
(tabu_doxygen.sty
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 30065 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/varwidth.tar.lzma...
mpmsvc: 0.03 MB, 8.91 Mbit/s
mpmsvc: extracting files from varwidth.tar.lzma...
======================================================================
(D:\MiKTeX\tex/latex/varwidth\varwidth.sty))
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 146807 bytes
mpmsvc: going to install 9 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/fancyvrb.tar.lzma...
mpmsvc: 0.15 MB, 34.54 Mbit/s
mpmsvc: extracting files from fancyvrb.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/fancyvrb\fancyvrb.sty
(D:\MiKTeX\tex/latex/graphics\keyval.sty))
(D:\MiKTeX\tex/latex/tools\tabularx.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 636952 bytes
mpmsvc: going to install 7 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/multirow.tar.lzma...
mpmsvc: 0.64 MB, 76.05 Mbit/s
mpmsvc: extracting files from multirow.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/multirow\multirow.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 155153 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/hanging.tar.lzma...
mpmsvc: 0.16 MB, 36.51 Mbit/s
mpmsvc: extracting files from hanging.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/hanging\hanging.sty)
(D:\MiKTeX\tex/generic/iftex\ifpdf.sty (D:\MiKTeX\tex/generic/iftex\iftex.sty))

======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 790035 bytes
mpmsvc: going to install 13 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/adjustbox.tar.lzma...
mpmsvc: 0.79 MB, 154.15 Mbit/s
mpmsvc: extracting files from adjustbox.tar.lzma...
======================================================================
(D:\MiKTeX\tex/latex/adjustbox\adjustbox.sty
(D:\MiKTeX\tex/latex/xkeyval\xkeyval.sty
(D:\MiKTeX\tex/generic/xkeyval\xkeyval.tex
(D:\MiKTeX\tex/generic/xkeyval\xkvutils.tex)))
(D:\MiKTeX\tex/latex/adjustbox\adjcalc.sty)
(D:\MiKTeX\tex/latex/adjustbox\trimclip.sty
(D:\MiKTeX\tex/latex/graphics\graphicx.sty
(D:\MiKTeX\tex/latex/graphics\graphics.sty
(D:\MiKTeX\tex/latex/graphics\trig.sty)
(D:\MiKTeX\tex/latex/graphics-cfg\graphics.cfg)))
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 282583 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/collectbox.tar.lzma...
mpmsvc: 0.28 MB, 70.65 Mbit/s
mpmsvc: extracting files from collectbox.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/collectbox\collectbox.sty)
(D:\MiKTeX\tex/latex/adjustbox\tc-pdftex.def))
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 140389 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/ifoddpage.tar.lzma...
mpmsvc: 0.14 MB, 38.73 Mbit/s
mpmsvc: extracting files from ifoddpage.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/ifoddpage\ifoddpage.sty))
(D:\MiKTeX\tex/latex/amsfonts\amssymb.sty
(D:\MiKTeX\tex/latex/amsfonts\amsfonts.sty))
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 345241 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/stackengine.tar.lzma...
mpmsvc: 0.35 MB, 20.16 Mbit/s
mpmsvc: extracting files from stackengine.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/stackengine\stackengine.sty
(D:\MiKTeX\tex/latex/etoolbox\etoolbox.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 820770 bytes
mpmsvc: going to install 7 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/listofitems.tar.lzma...
mpmsvc: 0.82 MB, 25.85 Mbit/s
mpmsvc: extracting files from listofitems.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/listofitems\listofitems.sty
(D:\MiKTeX\tex/generic/listofitems\listofitems.tex)))
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 173224 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/ulem.tar.lzma...
mpmsvc: 0.17 MB, 25.66 Mbit/s
mpmsvc: extracting files from ulem.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/ulem\ulem.sty)) (D:\MiKTeX\tex/latex/base\inputenc.sty)
(D:\MiKTeX\tex/latex/base\makeidx.sty) (D:\MiKTeX\tex/latex/tools\multicol.sty)
(D:\MiKTeX\tex/latex/base\textcomp.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 176251 bytes
mpmsvc: going to install 7 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/wasysym.tar.lzma...
mpmsvc: 0.18 MB, 31.33 Mbit/s
mpmsvc: extracting files from wasysym.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/wasysym\wasysym.sty)
(D:\MiKTeX\tex/generic/iftex\ifxetex.sty) (D:\MiKTeX\tex/latex/base\fontenc.sty
)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 279649 bytes
mpmsvc: going to install 121 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/psnfss.tar.lzma...
mpmsvc: 0.28 MB, 54.57 Mbit/s
mpmsvc: extracting files from psnfss.tar.lzma...
======================================================================
(D:\MiKTeX\tex/latex/psnfss\helvet.sty)
(D:\MiKTeX\tex/latex/psnfss\courier.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 243256 bytes
mpmsvc: going to install 4 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/sectsty.tar.lzma...
mpmsvc: 0.24 MB, 28.20 Mbit/s
mpmsvc: extracting files from sectsty.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/sectsty\sectsty.sty

LaTeX Warning: Command \underbar has changed.
Check if current package is valid.


LaTeX Warning: Command \underline has changed.
Check if current package is valid.

)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 921500 bytes
mpmsvc: going to install 8 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/geometry.tar.lzma...
mpmsvc: 0.92 MB, 108.41 Mbit/s
mpmsvc: extracting files from geometry.tar.lzma...
======================================================================
(D:\MiKTeX\tex/latex/geometry\geometry.sty
(D:\MiKTeX\tex/generic/iftex\ifvtex.sty)
(D:\MiKTeX\tex/latex/geometry\geometry.cfg))
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 761176 bytes
mpmsvc: going to install 7 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/fancyhdr.tar.lzma...
mpmsvc: 0.76 MB, 103.21 Mbit/s
mpmsvc: extracting files from fancyhdr.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/fancyhdr\fancyhdr.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 495608 bytes
mpmsvc: going to install 13 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/natbib.tar.lzma...
mpmsvc: 0.50 MB, 80.92 Mbit/s
mpmsvc: extracting files from natbib.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/natbib\natbib.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 532318 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/tocloft.tar.lzma...
mpmsvc: 0.53 MB, 86.91 Mbit/s
mpmsvc: extracting files from tocloft.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/tocloft\tocloft.sty)
Writing index file refman.idx

======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 400132 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/newunicodechar.tar.lzma...
mpmsvc: 0.40 MB, 47.07 Mbit/s
mpmsvc: extracting files from newunicodechar.tar.lzma...
======================================================================
(D:\MiKTeX\tex/latex/newunicodechar\newunicodechar.sty)

Package newunicodechar Warning: Redefining Unicode character on input line 116.



Package newunicodechar Warning: Redefining Unicode character on input line 117.


(D:\MiKTeX\tex/latex/hyperref\hyperref.sty
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 406142 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/ltxcmds.tar.lzma...
mpmsvc: 0.41 MB, 73.84 Mbit/s
mpmsvc: extracting files from ltxcmds.tar.lzma...
======================================================================

(D:\MiKTeX\tex/generic/ltxcmds\ltxcmds.sty)
(D:\MiKTeX\tex/generic/pdftexcmds\pdftexcmds.sty
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 293465 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/infwarerr.tar.lzma...
mpmsvc: 0.29 MB, 55.90 Mbit/s
mpmsvc: extracting files from infwarerr.tar.lzma...
======================================================================

(D:\MiKTeX\tex/generic/infwarerr\infwarerr.sty))
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 386446 bytes
mpmsvc: going to install 6 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/kvsetkeys.tar.lzma...
mpmsvc: 0.39 MB, 73.61 Mbit/s
mpmsvc: extracting files from kvsetkeys.tar.lzma...
======================================================================

(D:\MiKTeX\tex/generic/kvsetkeys\kvsetkeys.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 304244 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/kvdefinekeys.tar.lzma...
mpmsvc: 0.30 MB, 62.41 Mbit/s
mpmsvc: extracting files from kvdefinekeys.tar.lzma...
======================================================================

(D:\MiKTeX\tex/generic/kvdefinekeys\kvdefinekeys.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 355594 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/pdfescape.tar.lzma...
mpmsvc: 0.36 MB, 60.53 Mbit/s
mpmsvc: extracting files from pdfescape.tar.lzma...
======================================================================

(D:\MiKTeX\tex/generic/pdfescape\pdfescape.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 389104 bytes
mpmsvc: going to install 6 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/hycolor.tar.lzma...
mpmsvc: 0.39 MB, 72.39 Mbit/s
mpmsvc: extracting files from hycolor.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/hycolor\hycolor.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 298537 bytes
mpmsvc: going to install 6 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/letltxmacro.tar.lzma...
mpmsvc: 0.30 MB, 59.71 Mbit/s
mpmsvc: extracting files from letltxmacro.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/letltxmacro\letltxmacro.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 292852 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/auxhook.tar.lzma...
mpmsvc: 0.29 MB, 58.57 Mbit/s
mpmsvc: extracting files from auxhook.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/auxhook\auxhook.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 507783 bytes
mpmsvc: going to install 7 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/kvoptions.tar.lzma...
mpmsvc: 0.51 MB, 84.63 Mbit/s
mpmsvc: extracting files from kvoptions.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/kvoptions\kvoptions.sty)
(D:\MiKTeX\tex/latex/hyperref\pd1enc.def)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 441613 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/intcalc.tar.lzma...
mpmsvc: 0.44 MB, 78.51 Mbit/s
mpmsvc: extracting files from intcalc.tar.lzma...
======================================================================

(D:\MiKTeX\tex/generic/intcalc\intcalc.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 308618 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/etexcmds.tar.lzma...
mpmsvc: 0.31 MB, 61.72 Mbit/s
mpmsvc: extracting files from etexcmds.tar.lzma...
======================================================================

(D:\MiKTeX\tex/generic/etexcmds\etexcmds.sty)
(D:\MiKTeX\tex/latex/hyperref\backref.sty
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 324460 bytes
mpmsvc: going to install 6 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/rerunfilecheck.tar.lzma...
mpmsvc: 0.32 MB, 64.89 Mbit/s
mpmsvc: extracting files from rerunfilecheck.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/rerunfilecheck\rerunfilecheck.sty
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 389295 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/atveryend.tar.lzma...
mpmsvc: 0.39 MB, 70.78 Mbit/s
mpmsvc: extracting files from atveryend.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/atveryend\atveryend.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 298441 bytes
mpmsvc: going to install 6 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/uniquecounter.tar.lzma...
mpmsvc: 0.30 MB, 59.69 Mbit/s
mpmsvc: extracting files from uniquecounter.tar.lzma...
======================================================================

(D:\MiKTeX\tex/generic/uniquecounter\uniquecounter.sty
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 478294 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/bigintcalc.tar.lzma...
mpmsvc: 0.48 MB, 79.72 Mbit/s
mpmsvc: extracting files from bigintcalc.tar.lzma...
======================================================================

(D:\MiKTeX\tex/generic/bigintcalc\bigintcalc.sty))))
(D:\MiKTeX\tex/latex/url\url.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 638837 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/bitset.tar.lzma...
mpmsvc: 0.64 MB, 94.64 Mbit/s
mpmsvc: extracting files from bitset.tar.lzma...
======================================================================
(D:\MiKTeX\tex/generic/bitset\bitset.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 418256 bytes
mpmsvc: going to install 7 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/atbegshi.tar.lzma...
mpmsvc: 0.42 MB, 57.69 Mbit/s
mpmsvc: extracting files from atbegshi.tar.lzma...
======================================================================

(D:\MiKTeX\tex/generic/atbegshi\atbegshi.sty))
(D:\MiKTeX\tex/latex/hyperref\hpdftex.def)
(D:\MiKTeX\tex/latex/hyperref\puenc.def)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 1811671 bytes
mpmsvc: going to install 19 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/caption.tar.lzma...
mpmsvc: 1.81 MB, 149.42 Mbit/s
mpmsvc: extracting files from caption.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/caption\caption.sty
(D:\MiKTeX\tex/latex/caption\caption3.sty)
(D:\MiKTeX\tex/latex/caption\ltcaption.sty))
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 1242211 bytes
mpmsvc: going to install 6 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/etoc.tar.lzma...
mpmsvc: 1.24 MB, 121.19 Mbit/s
mpmsvc: extracting files from etoc.tar.lzma...
======================================================================
(D:\MiKTeX\tex/latex/etoc\etoc.sty
) (D:\MiKTeX\tex/latex/l3backend\l3backend-pdfmode.def)
No file refman.aux.
(D:\MiKTeX\tex/latex/psnfss\t1phv.fd)
(D:\MiKTeX\tex/context/base/mkii\supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
) (D:\MiKTeX\tex/latex/epstopdf-pkg\epstopdf-base.sty)
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
(D:\MiKTeX\tex/latex/hyperref\nameref.sty
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 336386 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/refcount.tar.lzma...
mpmsvc: 0.34 MB, 59.80 Mbit/s
mpmsvc: extracting files from refcount.tar.lzma...
======================================================================

(D:\MiKTeX\tex/latex/refcount\refcount.sty)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 327428 bytes
mpmsvc: going to install 5 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/gettitlestring.tar.lzma...
mpmsvc: 0.33 MB, 72.76 Mbit/s
mpmsvc: extracting files from gettitlestring.tar.lzma...
======================================================================

(D:\MiKTeX\tex/generic/gettitlestring\gettitlestring.sty))
No file refman.toc.
(D:\MiKTeX\tex/latex/amsfonts\umsa.fd) (D:\MiKTeX\tex/latex/amsfonts\umsb.fd)
(D:\MiKTeX\tex/latex/wasysym\uwasy.fd)
======================================================================
mpmsvc: starting package maintenance...
mpmsvc: installation directory: D:\MiKTeX
mpmsvc: package repository: https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/
mpmsvc: package repository digest: bd5068f7198a760c9aa3dca2b3ddf9ed
mpmsvc: going to download 330872 bytes
mpmsvc: going to install 24 file(s) (1 package(s))
mpmsvc: downloading https://mirrors.bfsu.edu.cn/CTAN/systems/win32/miktex/tm/packages/wasy.tar.lzma...
mpmsvc: 0.33 MB, 42.69 Mbit/s
mpmsvc: extracting files from wasy.tar.lzma...
======================================================================
[1{C:/Users/AaronTempletonYin/AppData/Lo
cal/MiKTeX/pdftex/config/pdftex.map}] [2]
Chapter 1.
(index.tex (D:\MiKTeX\tex/latex/psnfss\ts1phv.fd)
(D:\MiKTeX\tex/latex/psnfss\t1pcr.fd)