ADD MAKEINDEX

ADD MAKEINDEX
This commit is contained in:
DansYU 2019-06-26 11:28:04 +08:00 committed by Deans Yu
parent 0529b0908f
commit a2b4f5efb4
2 changed files with 24 additions and 3 deletions

25
.vscode/settings.json vendored
View File

@ -30,7 +30,18 @@
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
"%DOCFILE%"
]
},
{
"name": "makeindex",
"command": "makeindex",
"args": [
"%DOCFILE%.nlo",
"-s",
"nomencl.ist",
"-o",
"%DOCFILE%.nls"
]
},
{
@ -55,6 +66,16 @@
"xelatex"
]
},
{
"name": "xe->mkind->bib->xe*2",
"tools": [
"xelatex",
"makeindex",
"biber",
"xelatex",
"xelatex"
]
},
{
"name": "xe->bib->xe->xe",
"tools": [
@ -99,4 +120,4 @@
]
},
"files.autoGuessEncoding": true,
}
}

View File

@ -48,7 +48,7 @@
## 编译方式
采用的编译方式为 **XELATEX -→ BIBER -→ XELATEX -→ XELATEX**
采用的编译方式为 **XELATEX -→ MAKEINDEX -→ BIBER -→ XELATEX -→ XELATEX**
若使用vscode作为LaTeX编译器可以使用.vscode/setting里面的配置文件