私は現在立ち往生しており、2つの別々の用語集があります:main
&acronyms
。Acronyms
用語集は、テキストで最初に使用したときに脚注を印刷しますが、main
用語集は印刷しません。acronyms
用語の最初の使用時に脚注を印刷する以外の用語集を作成する方法はありますか?どうしたらいいのかわからない。
TeXnicCenterとMiKTeX2.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}
サンプルとappdomainに、説明付きの脚注または次のような脚注を含める必要があります。用語集を参照してください。
どうもありがとう、
Ovanes