前言
通過CTEX套裝和Miktex配置了中文環(huán)境洒敏,編譯器選擇的時(shí)texstudio舆吮,詳細(xì)配置方法可見
latex安裝和中文編譯環(huán)境配置詳細(xì)步驟(碩/博士畢業(yè)論文模板) - 簡書
1.語法部分
首先進(jìn)行宏定義:
%---------------------------nomencl
\usepackage[utf8]{inputenc}
\usepackage{amssymb}
\usepackage{nomencl}
\makenomenclature
\usepackage{etoolbox}
然后將“nomenclature”標(biāo)題變成中文:
\renewcommand{\nomname}{術(shù)語表}
接著定義nomgroup
\renewcommand\nomgroup[1]{%
\item[\bfseries
\ifstrequal{#1}{A}{粒子群算法}{%
\ifstrequal{#1}{B}{Number Sets}{%
\ifstrequal{#1}{C}{Other Symbols}{}}}%
]}
最后在document里定義術(shù)語刑桑,并print
\begin{document}
????\nomenclature[A]{$m$}{材料層數(shù)}%
????\nomenclature[A]{$L$}{最大迭代數(shù)}%
? ?。迫像。蛀恩。。
\printnomenclature
\end{document}
2. 編譯
術(shù)語表的編譯與參考文獻(xiàn)類似镜硕,都是:
xelatex
makeindex %.nlo
xelatex
xelatex
具體命令如下:
makeindex %.nlo -s nomencl.ist -o %.nls (%為文件名)