我想知道如何在缩写列表的简短缩写后添加“:”(冒号),例如:
我想得到
紫外线:紫外线
但我不断
紫外线
没有冒号。
答案1
您可以重新定义\bflabel
以实现该目标:
\renewcommand*{\bflabel}[1]{{\textbf{\textsf{#1}:}\hfill}}
完整示例:
\documentclass{article}
\usepackage{acronym}
\renewcommand*{\bflabel}[1]{{\textbf{\textsf{#1}:}\hfill}}
\begin{document}
\ac{uv}
\section*{List of Acronyms}
\begin{acronym}[UV]
\acro{uv}[UV]{Ultra Violet}
\end{acronym}
\end{document}