我目前陷入困境,有两个单独的词汇表:main
& acronyms
。Acronyms
词汇表在文本中首次使用时打印脚注,但main
词汇表不会。acronyms
除了在第一次使用该术语时打印脚注之外,还有其他方法可以制作任何其他词汇表吗?我不明白该怎么做。
下面是使用 TeXnic Center 和 MiKTeX 2.7 编译的代码示例:
\documentclass{article}
\usepackage{index}
\usepackage[toc,style=long3colheaderborder,footnote,acronym]{glossaries}
\makeindex
\makeglossaries
\newglossaryentry{appdomain}{name={application domain}, description={app Domain Description...}}
\newglossaryentry{sample}{name={[has been inserted aaa]},description={testing testing 123}}
\newacronym{aca}{aca}{a contrived acronym}
\begin{document}
\section{this is a test section}
This is the test line... a \gls{sample} \gls{appdomain}
\index{entry} and \gls{aca}
\thispagestyle{empty}\cleardoublepage
\printglossary[type=main,title={Glossary},toctitle={Glossary}]
\thispagestyle{empty}\cleardoublepage
\printglossary[type=\acronymtype,title={List of Abbreviations},toctitle={List of Abbreviations}]
\printindex
\thispagestyle{empty}\cleardoublepage
\end{document}
我希望 sample 和 appdomain 包含带有描述的脚注或脚注说明:请参阅词汇表
非常感谢,
欧文斯