索引和新命令

索引和新命令

我有一个关于索引的简短问题。

当我第一次使用由 固定的符号时,LaTeX 是否可能自动在索引中创建一个条目\newcommand

答案1

您可以创建自己的命令(\notation此处调用)来执行此操作。

\documentclass{article}
\usepackage{makeidx}
\usepackage{mathabx} %For the \rip symbol
\newcommand\notation[2]{\newcommand{#1}{#2}{\index{#2}}}
\makeindex
\begin{document}
\notation{\tomb}{$\rip$}
After shooing them, I buried the bodies in a \tomb.
\printindex
\end{document}

请注意,这会在定义命令时创建索引条目,而不是在第一次使用时创建。

相关内容