내 문서의 페이지당 명명법 목록의 한 그룹만 인쇄해야 합니다. 내 코드는 다음과 같습니다
\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?