我使用的旧式 LaTeX 样式似乎与glossaries
: 不兼容,当我要求
\printnoidxglossary[type=index,style=mcolindex,sort=use]
我得到了我需要的索引,但它的标题是章节标题尽管这是一种风格章节作为最高层级,我需要索引有一个章节式的标题。我能否要求glossaries
提供不带标题的索引,以便我可以编写
\chapter*{List of Notations}
\printnoidxglossarynotitle[type=index,style=mcolindex,sort=use]
并且两次都没有获得称号?
答案1
我没有使用过 Legacy 风格,但是下面的代码能满足你的要求吗?(mcolindex
对我来说这里不起作用)
\documentclass{book}
\usepackage[acronym,toc,section=chapter]{glossaries}
\loadglsentries{example-glossaries-brief}
%\makeglossaries % for \printglossary
\makenoidxglossaries % for printnoidxglossary
\begin{document}
\tableofcontents
\glsaddall
%\setglossarysection{chapter} % atm not necessary because of the chosen package option
%\printglossary[title={List of Notations},style=treegroup]
\printnoidxglossary[title={List of Notations},style=treegroup]
\newpage
\chapter*{List of Notations}
%\printglossary[title={},style=treegroup]
\printnoidxglossary[title={},style=treegroup]
\newpage
\setglossarysection{section} % set level on the fly
%\printglossary[title={List of Notations},style=treegroup]
\printnoidxglossary[title={List of Notations},style=treegroup]
\end{document}