我只需要在文档中每页打印一组术语列表。我的代码是:
\documentclass{book}
\usepackage{nomencl}
\makenomenclature
\renewcommand{\nomname}{Nomeclature Title}
\RequirePackage{ifthen}
\renewcommand{\nomgroup}[1]{%
\ifthenelse{\equal{#1}{A}}{\item List 1}{
\ifthenelse{\equal{#1}{S}}{\item List 2}{}}}
\begin{document}
\nomenclature[S]{$T_S$}{Temperature}
\nomenclature[S]{$X_i$}{Inicial point}
\nomenclature[A]{VHDL}{VHSIC Hardware Description Language}
\nomenclature[A]{VHSIC}{Very High Speed Integrated Circuits}
\printnomenclature
\end{document}
结果是
我怎样才能仅打印列表 1?或列表 2?