我习惯\input{GlossaryEntries}
将词汇表条目列表添加到我的文档中。由于此列表很容易变得很长,因此不便于概览,因此我想\newglossaryentry{entry}{...}
在 TexMaker 的结构选项卡中列出每个条目。这样可以轻松导航到条目,并且在添加新条目后可以轻松排序。
是否可以将自定义命令条目(如上)列出到 TexMaker(或其他编辑器)的结构选项卡中?
\documentclass{article}
\usepackage[acronym]{glossaries}
\makeglossaries
\newacronym{abc}{ABC}{a contrived acronym}
\newglossaryentry{computer1}
{
name=computer1,
description={computer1}
}
\newglossaryentry{computer2}
{
name=computer2,
description={computer2}
}
\newglossaryentry{computer3}
{
name=computer3,
description={computer3}
}
\begin{document}
\gls{abc}
\gls{computer3}
\end{document}
现在,如果在 TexMaker 的结构选项卡中可以选择“ABC”、“computer1”、“computer2”、“computer3”,那就太棒了。