我已经加载了首字母缩略词包,并在 \acronym 的选项中添加了数学环境。但现在首字母缩略词不会以粗体形式打印到首字母缩略词列表中。我怎样才能将其以粗体形式打印(仅在索引中而不是在正文中)?
\documentclass{scrartcl}
\usepackage[footnote, printonlyused]{acronym}
\begin{document}
\section{index}
\begin{acronym}[Abkürzungen]
\acro{PC}{personal computer}
\acro{RAM}{Random Access Memmory}
\acro{HDD}{hard disk drive}
\acro{pi}[$\pi$]{pi}
\end{acronym}
\section{body}
Some hardware components of a \ac{PC} are the \ac{HDD} and the \ac{RAM}.
A thing that is not a component of a \ac{PC} is \ac{pi}.
\end{document}
答案1
要使标签中的数学数字加粗,您可以将\boldmath
其添加到\aclabelfont
。只需添加
\renewcommand*{\aclabelfont}[1]{\textbf{\boldmath\acsfont{#1}}}
在你的序言中。
答案2
您可以尝试使用包“textgreek”,然后使用 \textpi 而不是 $\pi$。