0

我目前正在撰写关于 Overleaf 的报告,并且我对词汇表有疑问。

这是词汇表的定义:

 \newglossaryentry{vp} {
     name= Verification Plan,
     description={A verification plan is a list of the procedures and methods to be used for verification} }

我在描述中将这个词汇表引用为:

    The development phase includes \gls{vp}, creating a verification environment, testbench, and test case development.

现在我的问题是,有没有一种方法可以在我的 pdf 中为词汇表条目打印一个数字上标(在我的情况下,它是用于单词验证计划),它指示词汇表编号?因此,如果在我的词汇表页面中,有 10 个带有定义的单词,并且如果单词验证计划是第 7 个单词,那么在我的 pdf 文档中,我希望单词验证计划的上标为“7”,如下所示:

在此处输入图像描述

我想这样做的原因是为了让我的教授/任何读者发现它很容易参考,此外,通过使用这个下标,我想表明这个词已经在词汇表中定义了。

谢谢!

编辑#1:(请忽略此编辑,请参阅编辑#2) 根据要求,我添加了一个最小的可重现示例,如下所示。

\makeglossaries
\newglossaryentry{vp}
{
    name= Verification Plan,
    description={A verification plan is a list of the procedures and methods to be used for verification}
}

\begin{document}

\glsaddall
\setglossarystyle{altlist}
\printglossary

\textbf{Develop}: The develop phase includes \gls{vp}, creating verification environment, testbench and test case development.

\end{document}

编辑#2:这是可编译的代码:

\documentclass{article}

\usepackage{glossaries}

\makeglossaries
\newglossaryentry{vp}
{
    name= Verification Plan,
    description={A verification plan is a list of the procedures and methods to be used for verification}
}

\begin{document}

%\glsaddall
\setglossarystyle{altlist}
\printglossary

\textbf{Develop}: The develop phase includes \gls{vp}, creating verification environment, testbench and test case development.


\end{document}

编辑#2 产生:

在此处输入图像描述

4

1 回答 1

1
\documentclass{article}

\usepackage[
entrycounter=true
]{glossaries}

\makeglossaries
\newglossaryentry{vp}
{
    name= Verification Plan,
    description={A verification plan is a list of the procedures and methods to be used for verification}
}

\begin{document}

\glsaddall
\setglossarystyle{altlist}
\printglossary

------

  \textbf{Develop}: The develop phase includes \gls{vp}\footnotemark[\glsrefentry{vp}], creating verification environment, testbench and test case development.


\end{document}

在此处输入图像描述

于 2022-01-10T22:16:34.130 回答