僅使用 nomencl 列印一組

僅使用 nomencl 列印一組

我只需在文件中的每頁列印一組命名法清單。我的程式碼是:

\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?

相關內容