有没有办法增加(好吧,添加,现在似乎几乎没有)词汇表条目之间的垂直空间,而无需创建自定义样式,如果可以,该怎么做?快速浏览了用户手册,但在所有条目之间没有找到任何东西,不仅仅是组或更改标题或...
我在用
\printglossary[type=person, nonumberlist=false, style=index]
对于带有多行描述的非常长的条目。因此,如果存在一种解决方案,该解决方案依赖于某些无法处理多列的内容,则依赖于在条目后添加一个段落或类似内容 - 一切都会好起来。
答案1
用于\renewcommand*{\glspostdescription}{<vertical space>}
在列出的项目之间添加垂直空间。
\documentclass{article}
\usepackage{glossaries}
\makeglossaries
\renewcommand*{\glspostdescription}{\medskip} % add space after each item
\newglossaryentry{Blackbox1}
{
name=Blackbox models 1,
sort=blackbox,
description={--- In system identification, the term \emph{blackbox} modelling refers to the process of modelling a system through non-parametric techniques.}
}
\newglossaryentry{Blackbox2}
{
name=Blackbox models 2,
sort=blackbox,
description={--- In system identification, the term \emph{blackbox} modelling refers to the process of modelling a system through non-parametric techniques.}
}
\newglossaryentry{Blackbox3}
{
name=Blackbox models 3,
sort=blackbox,
description={--- In system identification, the term \emph{blackbox} modelling refers to the process of modelling a system through non-parametric techniques.}
}
\begin{document}
\glsaddall
\printglossary[nonumberlist=false, style=index]
\end{document}