(首先,我要声明,我知道这是一个荒谬而愚蠢的问题。我只是想开一个荒谬而愚蠢的玩笑。)
我想用来\index
添加一个条目,无论索引条目位于何处,该条目都会有固定的页码。在 LaTeX 文档中有什么可以做到这一点吗?(我宁愿不编辑该ind
文件,因为重新编译文档可能会删除该条目。)
答案1
只需模仿所做\index
的即可。
\documentclass{article}
\usepackage{makeidx}
\makeindex
\begin{document}
\makeatletter
\protected@write\@indexfile{}{\string\indexentry{Derek, Bo}{10}}
\makeatother
An index entry\index{index}
\printindex
\end{document}