我使用两种脚注:
- 显示某个术语的英文对应内容。
- 更详细地解释某事或参考所需的部分。
我想在文档末尾添加一个第一类脚注的索引,就像目录一样(或者像一个四列表格,有两对英文/等效标题)。我们有这样的包或命令吗?
答案1
您可以使用endnote
打包并定义一个特殊命令,用于将注释制作成脚注和尾注。
\newcommand{\mynote}[1]{\footnote{#1}\endnote{#1}}
或者你也可以使用索引包makeidx
,如果您希望按字母顺序排列。
\newcommand{\mynote}[1]{\footnote{#1}\index{#1}}
第二个像这样
\documentclass{article}
\usepackage{makeidx}
\makeindex
\newcommand{\mynote}[1]{\footnote{#1}\index{#1}}
\begin{document}
the red colour\mynote{color in american english} here
\printindex
\end{document}
您必须运行latex
(或pdflatex
)两次,并对makeindex
输出进行排序,因此将上述内容保存为mwe.tex
,执行以下操作:
pdflatex mwe
makeindex mwe
pdflatex mwe
如果您正在使用特殊的 TeX 编辑器(例如 Kile 或 TeXnicCenter),则可能有选项可以启用此行为。
有可能使用索引样式文件和文档类特定功能来改变索引的布局,但这可能是一个不同的问题。