我正在使用带有列表组样式的词汇表包。我只需要词汇表组标题(A、B ..)居中。感谢您的帮助!
答案1
如果您想要居中标题,最好选择其他样式。这几乎肯定不会正常工作。
\documentclass{article}
\usepackage[style=listgroup]{glossaries}
\renewcommand*{\glsgroupheading}[1]{\item[]\makebox[\linewidth]{\glsgetgrouptitle{#1}}}
\makeglossary
\newglossaryentry{aa}{%
name = aa,
description = {AA aa}}
\newglossaryentry{bb}{%
name = bb,
description = {BB bb}}
\begin{document}
\gls{aa} \gls{bb}
\printglossary
\end{document}