我想将我的acronym
环境保存在单独的文件中,避免打印出整个缩写列表。当缩写环境包含在主文档中时,包[nolist]
的选项acronym
似乎仍然不起作用。
请考虑以下 MWE
\documentclass{article}
\usepackage[nolist]{acronym}
\usepackage{filecontents}
\begin{filecontents}{acronym.tex}
\begin{acronym}
\acro{NLP}{Natural Language Processing}
\end{acronym}
\end{filecontents}
\begin{document}
First use of \ac{NLP}. Second use of \ac{NLP}.
\include{acronym}
\end{document}
这使
但当我去掉这个选项时,[nolist]
我得到了正确的
答案1
\input
如果我使用而不是 ,我会得到预期的结果\include
。
\documentclass{article}
\usepackage[nolist]{acronym}
\usepackage{filecontents}
\begin{filecontents}{acronym.tex}
\begin{acronym}
\acro{NLP}{Natural Language Processing}
\end{acronym}
\end{filecontents}
\begin{document}
First use of \ac{NLP}. Second use of \ac{NLP}.
\input{acronym}
\end{document}