以文本形式打印索引条目名称

以文本形式打印索引条目名称

我有一篇使用如下索引的文章文档:

\documentclass{article}
\usepackage{makeidx}
\makeindex
\begin{document}
    This is a text, and it contains the index entry text.\index{text}
    \printindex
\end{document}

但是,我不想每次在源代码中出现索引条目(此处为“文本”)时都输入两次。(因为“文本”\index{text}不会被打印。)

我想使用类似的方法...contains the index entry \some_command{text}打印“包含索引条目文本”将“文本”添加到索引中。

相关内容