我可以索引正文词 \index{正文词} 而不用写 2x“正文词”吗?

我可以索引正文词 \index{正文词} 而不用写 2x“正文词”吗?

我正在制作我的第一个索引。下面的 MWE 将单词“once”写入索引,但不写入正文。因此,once\index{once}如果我想在正文和索引中都包含文本,我需要写入。我可以编写一个宏来帮我完成此操作,因此可以写入 `\myindex{once} 并使其出现在正文和索引中。有没有内置的 LaTeX 方法来做到这一点?

\documentclass[12pt]{memoir}
\usepackage[makeindex]{imakeidx}

\makeindex

\begin{document}

1. This is how you use the index command\index{command}.\\
2. Instead of typing "command" twice above, I'd rather
type it \index{once}.\\

\printindex

\end{document}

相关内容