-
Notifications
You must be signed in to change notification settings - Fork 290
/
msmake.bat
114 lines (108 loc) · 3.43 KB
/
msmake.bat
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
::======================================
:: Filename: mamske.bat
:: Author: Joseph
:: Created: 2012 - 07 - 12
:: E-mail: [email protected]
::======================================
:: 使用说明
::
:: 1、生成文档
:: msmake [bachelor|master|kaitireport] [fast]
:: 在当前目录下编译论文,将执行xelatex命令,若无相应的cls/bst文件,将直接报错
:: - fast: 首次编译或完全清空时,不需要fast选项,将执行xelatex->bibtex->xelatex->xelatex命令
:: 启用fast选项时仅执行xelatex,以改善编译速度
:: 2、清理文件
:: msmake [clean] [more|empty]
:: 在当前目录下清理编译过程中产生的临时文件
:: - more 将清除编译过程中产生的文件,包括*aux *.bbl 文件
:: - empty 将清除编译过程中产生的文件,包括*aux *.bbl *.pdf 文件,不建议使用
::
::======================================
@echo off
:init
if /i {%1}=={bachelor} goto thesis
if /i {%1}=={master} goto thesis
if /i {%1}=={kaitireport} goto thesis
if /i {%1}=={clean} goto clean
if /i {%1}=={help} goto help
if /i {%1}=={} goto help
goto help
::======================================
:: 编译我的论文
::======================================
:thesis
echo 正在编译文件
if not exist buaathesis.cls goto clserr
if not exist gbt7714-author-year.bst goto bsterr
if not exist gbt7714-numerical.bst goto bsterr
if /i {%1}=={bachelor} set mythesis=sample-bachelor
if /i {%1}=={master} set mythesis=sample-master
if /i {%1}=={kaitireport} set mythesis=sample-kaitireport
:: 如若主文件名更改,请将上面的"sample-bachelor"或"sample-master"更改。
call xelatex %mythesis%
if not {%2}=={fast} (goto full)
if errorlevel 1 goto myerr1
echo 成功生成论文
call %mythesis%.pdf
goto end
:full
call bibtex %mythesis%
:: Negligible errors will occur when build the bib library.
:: if errorlevel 1 goto biberr
if not exist %mythesis%.bbl goto biberr
call xelatex %mythesis%
call xelatex %mythesis%
echo 成功生成论文
call %mythesis%.pdf
goto end
::======================================
:: 清除文件以及清除更多文件
::======================================
:clean
echo 删除编译临时文件
del /f /q /s *.log *.glo *.ilg *.lof *.ind *.out *.thm *.toc *.lot *.loe *.out.bak *.blg *.synctex.gz
del /f /q *.idx
del /f /s *.dvi *.ps
if {%2}=={more} (goto cleanmore)
if {%2}=={empty} (goto cleanempty)
goto end
:cleanmore
del /f /q /s *.aux *.bbl
goto end
:cleanempty
del /f /q /s *aux *.bbl *.pdf
goto end
::======================================
:: 帮助信息
::======================================
:help
echo 输入msmake+下面的命令,选择进入相应操作
echo 如输入命令“msmake bachelor”
echo msmake参数 说明
echo bachelor/master 生成我的论文
echo clean 清除生成的多余文件
echo help 显示本帮助信息
echo bachelor/master full 为首次或运行"clean more"命令后使用
echo clean more 将清除所有当前目录下的无关文件
echo 注意:所需编译的文件名必须是sample-bachelor.tex或sample-master.tex
:: 忍不住吐槽,为了显示对齐,居然排得这么乱!
goto end
::======================================
:: 运行错误信息
::======================================
:myerr1
echo 唉呀,生成论文失败了呢
goto end
:biberr
echo 貌似木有参考文献数据库吧
goto end
:clserr
echo 居然连cls模板都木有!闹哪样!
goto end
:bsterr
echo 居然连bst的参考文献样式都木有!闹哪样!
goto end
::======================================
:: 结束符,无任何具体意义
::======================================
:end