我正在使用首字母缩略词包。每次使用首字母缩略词时是否可以自动添加索引条目?
答案1
修改\ac
命令,以便它除了原有的功能外还能调用\index
。
\documentclass{article}
\usepackage{makeidx}
\makeindex
\usepackage{acronym}
\let\oldac\ac
\renewcommand*{\ac}[1]{\oldac{#1}\index{#1}}
\begin{document}
\begin{acronym}
\acro{NATO}{North Atlantic Treaty Organization}
\end{acronym}
Some text about the \ac{NATO}.
\printindex
\end{document}