我正在使用 overleaf 中的模板,并且我有此章节的缩写词:
\chapter{List of acronyms}
{\small
\begin{acronym}[XXXXXXXX]
\Acro{GNU} {\acs{GNU} is Not Unix}
\acro{OO} {Orientación a Objetos}
\acro{RPC} {Remote Procedure Call}
\acro{BDD} {Behaviour Driven Development}
\end{acronym}
}
问题是,在结果中我只看到章节标题和空白页。我是不是漏掉了什么?
答案1
这对我有用:
\documentclass{report}
\usepackage{acronym}
\begin{document}
\chapter{List of acronyms}
{\small
\begin{acronym}[XXXXXXXX]
\acro{GNU} {\acs{GNU} is Not Unix}
\acro{OO} {Orientación a Objetos}
\acro{RPC} {Remote Procedure Call}
\acro{BDD} {Behaviour Driven Development}
\end{acronym}
}
\end{document}
请注意,我只是\Acro{GNU}
用替换了\acro{GNU}
。
答案2
\documentclass{report}
\usepackage{acronym}
\begin{document}
\chapter{List of acronyms}
{\small
\begin{acronym}[XXXXXXXX]
\acro{GNU} {\acs{GNU} is Not Unix}
\acro{OO} {Orientación a Objetos}
\acro{RPC} {Remote Procedure Call}
\acro{BDD} {Behaviour Driven Development}
\end{acronym}
}
\end{document}