引用同一词汇表条目的符号或名称

引用同一词汇表条目的符号或名称

在我的论文中,我经常使用对象的名称或其符号。例如,我使用术语成本矩阵和符号c_ij。阅读任何一个时,我希望能够单击它并引用词汇表条目,其中包括以下内容:

成本矩阵 c_ij - 显示每个客户的成本

目前,我使用以下内容:

\usepackage[toc, acronym]{glossaries}
\makeglossaries
\begin{document}

\newglossaryentry{cost matrix}{name=cost matrix,
description={Displays the costs for each customer}}

\printglossary

不幸的是,这不包括符号。有人知道如何包括上述符号吗?

亲切的问候!

答案1

使用symbol键添加符号:

\documentclass{article}
\usepackage[colorlinks]{hyperref}
\usepackage[toc, acronym,style=tree]{glossaries}

\makeglossaries

\newglossaryentry{cost matrix}{name=cost matrix,
symbol={\ensuremath{c_{ij}}},
description={Displays the costs for each customer}}

\begin{document}
\gls{cost matrix} or \glssymbol{cost matrix}.

\printglossary

\end{document}

生成:

文件图像

相关内容