我在用NOMENCLATURE进行论文之前符号和变量的表示,因为有符号,变量等,所以想用nomgroup分成不同的类别。但是这个默认的格式和我二级标题的格式不一样,我看了刊出的文章都是要和二级标题一致的,没有找到解决办法。(我用的IEEE模板)
我现在的:
应该成为的:
我目前的代码是这样的:
\usepackage{nomencl}% For NOMENCLATURE
\usepackage{ifthen}% For NOMENCLATURE
\renewcommand{\nompreamble}{}% code after main title
\renewcommand{\nomgroup}[1]{%
\item[\textbf{%
\ifthenelse{\equal{#1}{V}}{Variables}{}% add more groups as needed
\ifthenelse{\equal{#1}{P}}{Parameters}{}%
\ifthenelse{\equal{#1}{A}}{Abbreviations}{}%
}]%
}
\makenomenclature % For NOMENCLATURE
\nomenclature[V]{M$_1$}{M parameters}
\nomenclature[P]{$t$}{temperature}
\nomenclature[V]{$t1$}{temperature111}
\nomenclature[P]{$t2$}{temperature121}
\printnomenclature
其实说白了就是要让上面的小标题都是subsection{}格式的才对,哪位大佬知道怎么改,求助
documentclass{article}
usepackage{nomencl}% For NOMENCLATURE
usepackage{ifthen}% For NOMENCLATURE
renewcommand{nompreamble}{}% code after main title
renewcommand{nomgroup}[1]{%
\item[\textbf{%
\ifthenelse{\equal{#1}{V}}{\emph{Variables}}{}% add more groups as needed
\ifthenelse{\equal{#1}{P}}{\emph{Parameters}}{}%
\ifthenelse{\equal{#1}{A}}{\emph{Abbreviations}}{}%
}]%
}
makenomenclature % For NOMENCLATURE
begin{document}
nomenclature[V]{$\quad$ M$_1$}{M parameters}
nomenclature[P]{$\quad$ $t$}{temperature}
nomenclature[V]{$\quad$ $t1$}{temperature111}
nomenclature[P]{$\quad$ $t2$}{temperature121}
printnomenclature
编译后结果如下图,感觉是你想要的效果吧
您好,就是parameters和variables两个小标题的格式不对,第二张图是我找到已出版的文章上的,可以看出来它的那个小标题Indices and Sets格式和我的就不一样。
这张图是我正文二级标题subsection的格式,也就是说我的parameters和variables应该也是这种格式的。但目前的不是