将词汇表中的附录与词汇表包链接起来

将词汇表中的附录与词汇表包链接起来

我可以轻松地将首字母缩略词链接到词汇表术语,如下所示:

\newacronym[see={[Glossary:]{ip}}]{IP}{IP}{Inntellectual Property\glsadd{ip}}
\newglossaryentry{ip}{%
    name={IP},%
    description={A reusable unit of logic, cell, or integrated circuit layout design that is the intellectual property of one party},%
}

我怎样才能将词汇表术语链接到附录?像这样:

\documentclass{book}
\usepackage[toc]{glossaries}
\makeglossaries

\newglossaryentry{finfet}{%
    name={FinFET},%
    description={A MOSFET transistor built on a substrate where the gate is placed on two, three, or four sides of the channel or wrapped around the channel, forming a double gate structure.},%
    see={Appendix \ref{sec:finfet-transistors}}
}

\begin{document}
    \chapter{First chapter}
    After \glspl{finfet} were introduced, leakage power of ASIC...
    \appendix
    \chapter{FinFET Transistors}
    \label{sec:finfet-transistors}
    \printglossary
\end{document}

此代码产生以下输出 在此处输入图片描述 并导致错误:

! Missing \endcsname inserted.
<to be read again> 
                   \protect 
l.6 ...fet-transistors' on page 1 undefined}}{Z}}}
                                                  %
The control sequence marked <to be read again> should
not appear between \csname and \endcsname.

相关内容