nomencl宏包
提问
参考How to achieve nomenclature entries like: symbol, Description, Dimension and unit, etc?

主要copy这一篇customize vertical space of entries and subgroup names in nomenclature

效果图
Latex术语表中nomencl分类(subgroup)为 参数Parameters  变量Variables等
直接用:

\documentclass{article}
\usepackage{nomencl}
\usepackage{ifthen}

\renewcommand{\nompreamble}{}% code after main title
\renewcommand{\nomgroup}[1]{%
  \item[\textbf{%
    \ifthenelse{\equal{#1}{M}}{Parameters}{}%
    \ifthenelse{\equal{#1}{N}}{Variables}{}% add more groups as needed
    }]%

}

\makenomenclature

\begin{document}

\nomenclature[M]{M$_1$}{big-M parameters}
\nomenclature[N]{$t$}{temperature}
\nomenclature[N]{$t1$}{temperature111}
\nomenclature[M]{$t2$}{temperature121}
\printnomenclature
\end{document}

相关文章:

  • 2022-12-23
  • 2021-07-15
  • 2022-12-23
  • 2021-06-21
  • 2021-11-30
  • 2021-06-07
猜你喜欢
  • 2021-11-02
  • 2021-07-29
  • 2022-12-23
  • 2022-02-11
  • 2022-03-10
  • 2021-09-12
相关资源
相似解决方案