作为附录,我在一个单独的章节中有一个缩写列表(tex 文件名为“Glossar”),如下所示:
\chapter{Abkürzungsverzeichnis}
\begin{acronym}\itemsep8pt
\acro{AI} {\emph{Artificial Intelligence}, zu Deutsch: Künstliche Intelligenz}
\acro{CNN} {\emph{Convolutional Neural Network}, zu Deutsch etwa: Faltendes neuronales Netzwerk}
\acro{DNN} {\emph{Deep Neural Network}, zu Deutsch: Tiefes neurales Netzwerk}
\end{acronym}
它包括以下内容:
\documentclass[envcountsame,envcountchap, deutsch]{i-studis}
\usepackage{acronym}
\makeindex
\begin{document}
\begingroup
\renewcommand{\thepage}{Titel}
\mytitlepage
\newpage
\endgroup
%--------------------------------------------------------------------------
\frontmatter
%--------------------------------------------------------------------------
\input{chapters/Vorwort}
\tableofcontents
\listoffigures
\listoftables
%--------------------------------------------------------------------------
\mainmatter
%--------------------------------------------------------------------------
\input{chapters/Chapter1}
% ...
%--------------------------------------------------------------------------
\backmatter
%-------------------------------------------------------------------------
\bibliographystyle{geralpha}
\bibliography{literatur}
%--------------------------------------------------------------------------
\printindex
%--------------------------------------------------------------------------
\begin{appendix}
\include{chapters/Glossar}
\include{chapters/B}
\end{appendix}
\end{document}
我希望描述对齐。或者换句话说:添加一些水平空间,以便描述垂直对齐,如下所示:
我已经进行了一些搜索,但只找到了有关\newacronym
如何在项目之间添加垂直空间的结果。
答案1
您可以使用环境的可选参数acronym
。
首字母缩略词列表的标准格式是
\description
环境。如果您将可选参数传递给首字母缩略词环境,则首字母缩略词列的宽度将适合给定参数的宽度(应该是最长的首字母缩略词)。例如,如果 HBCI 是使用的最长的首字母缩略词,则列表应以\begin{acronym}[HBCI]
(包文档的第 4 页)开头
\documentclass[12pt,a4paper]{report}
\usepackage{acronym}
\begin{document}
\begin{appendix}
\chapter{Abkürzungsverzeichnis}
\begin{acronym}[MMMM] % changed <<<<<<<<<<<<<<<<
\acro{AI} {\emph{Artificial Intelligence}, zu Deutsch: Künstliche Intelligenz}
\acro{CNN} {\emph{Convolutional Neural Network}, zu Deutsch etwa: Faltendes neuronales Netzwerk}
\acro{DNN} {\emph{Deep Neural Network}, zu Deutsch: Tiefes neurales Netzwerk}
\end{acronym}
\end{appendix}
\end{document}