未编号章节的每章词汇表

未编号章节的每章词汇表

我有一份由子文档组成的文档,这些子文档按章节组织。这些章节没有编号,因为章节标题是子文档的标题。每章都有自己的页码、目录等。我想为每个章节添加一个词汇表,其中包含本章中使用的所有缩写词以及仅使用过的缩写词。

使用我发现的方法这里,这应该是可能的。不幸的是,这似乎只适用于编号章节,因为这个数字(\thechapter)用于样式定义(据我了解代码)。有没有办法使用隐藏的章节编号或 ID 来引用词汇表条目?

提前谢谢了

克里斯

\documentclass[a4paper, oneside, numbers=noenddot]{scrbook}

\usepackage{datatool-base}
\usepackage[counter=chapter,xindy,section=section]{glossaries}

\GlsSetXdyMinRangeLength{0}

\makeglossaries
\newglossaryentry{E}{name={\ensuremath{E}},description={energy}}
\newglossaryentry{m}{name={\ensuremath{m}},description={mass}}
\newglossaryentry{c}{name={\ensuremath{c}},description={speed of light}}
\newglossaryentry{v}{name={\ensuremath{v}},description=velocity}
\newglossarystyle{mystyle}%
{%
    \setglossarystyle{list}%
    \renewcommand*{\glossaryentrynumbers}[1]{\striprelax##1\endstriprelax}%
    \renewcommand*{\glsXchapterXglsnumberformat}[2]{##2}%
    \renewcommand*{\delimR}{,}%
    \renewcommand*{\glossentry}[2]{%
        \edef\doifinlocation{\noexpand\ifinlocation{\thechapter}{##2}}%
        \doifinlocation
        {%
            \item \glossentryname{##1} \glossentrydesc{##1}%
        }%
    }%
}
\newcommand{\ifinlocation}[3]{%
    \DTLifinlist{#1}{#2}{#3}{}%
}
\def\striprelax\relax#1\endstriprelax{#1}
\setglossarystyle{mystyle}

\begin{document}
    \chapter*{Sample Chapter}
    \printglossary
    \begin{equation}
        \gls{E} = \gls{m}\cdot \gls{c}^2
    \end{equation}

    \glsresetall 
    \chapter*{Another Chapter}
    \printglossary
    \begin{equation}
        \gls{E} = \frac{\gls{m}\gls{v}^2}{2}
    \end{equation}
\end{document}

相关内容