全部。我试图让缩略词列表显示在我的文档中。我有一个主“thesis.tex”文件,我想将缩略词放在图表列表之后。
在该文件的序言中,我有以下内容:
\usepackage[]{uahdis,chngpage,units,bm,hhline,rotating,verbatim,amsfonts,amssymb,xspace,url,natbib}
\usepackage[]{indentfirst,layouts, booktabs, enumerate, gensymb}
\usepackage[acronym]{glossaries}
\makeglossaries
开始文档后,我有这个:
\begin{document}
% Here comes the stuff that goes before the main content
\frontmatter
\pagestyle{plain}
\maketitle
\copyrightpage
%MWT - UAH Approval Form
\approvalpage
% Include my abstract
\include{./FRONT/abstract}
% Include my acknowledgements
\include{./FRONT/acknowledgments}
% Make a Table of Contents
\tableofcontents
% Make a List of Figures
\listoffigures
% Make a List of Tables
\listoftables
% print the acronyms
\include{./FRONT/acronyms}
\clearpage
\printglossary[type=\acronymtype]
% Make a List of Symbols (Comment out if unwanted)
\include{./FRONT/symbols}
在具有 filepath 的单独文件夹中./FRONT/acronyms.tex'
,我有以下代码:
\newacronym{ALEXI}{ALEXI}{Atmosphere Land Exchange Inverse}
\newacronym{ESI}{ESI}{Evaporative Stress Index}
但是,我得到了一个表格列表、一个符号列表和一个没有首字母缩略词的空白页
例如:
以下是第 xi 页的表格:
以下是第 xii 页缺失的首字母缩略词:
以下是有效符号的列表:
我希望在表格列表之后添加首字母缩略词列表。文档中的其他所有内容都正常工作。我不确定我需要做什么才能显示这些首字母缩略词。
我注意到一件事,但不确定这是否重要,那就是我的acronyms.tex
文件缺少 .bak。我想知道这是否与此有关?例如:
我正在使用 Overleaf 撰写论文。我需要对 Overleaf 做些什么才能让它正常工作?我尝试过清除日志缓存,但没有成功。
答案1
我做了几件事让它工作起来。首先,我使用背面编译按钮上的下拉菜单并打开“自动编译”。
然后,我在下面列出的注释下更改了以下代码:
% print the acronyms
\glsaddall %adds all the entries to the glossary
\printglossary
\printglossary[type=\acronymtype, nonumberlist]
由于某种原因,它起作用了。我认为其中一个原因是我不需要专门包含首字母缩略词页面。