多行打印中没有内容

多行打印中没有内容

我使用以下代码来生成索引条目,

\documentclass[12pt,a4paper,footinclude=true,headinclude=true,openany]{scrbook} % 
\usepackage{multind}
\makeindex{index}
\makeindex{notations}
\begin{document}

This is my first index entry\index{index}{first index} under index,  I am defining one more index \index{notations}{$\mathbb R$=Set of all Real numbers}.

\printindex{index}{Index}
\printindex{notations}{List of Notations}

\end{document}

输出如下, 在此处输入图片描述

在此处输入图片描述

在此处输入图片描述

答案1

multind软件包在 CTAN 上可用,但它已经过时了,是一个 LaTeX 2.09 软件包,在我看来,因为它自 1991 年以来就没有更新过(显然)

可以multind使用 Enrico Gregorio 的 (埃格尔在 TeX.SX 上!) imakeidx

\makeindex[name=foo,title={List of foo}]对每个单独的索引使用和\index[foo]{Your index entry}\printindex[foo]

与之相比,主要的变化multind是第一个参数的使用是可选的,并且使用了键值语法\makeindex

\documentclass[12pt,a4paper,footinclude=true,headinclude=true,openany]{scrbook} % 
\usepackage{imakeidx}
\usepackage{amssymb}
\makeindex[name=index,title=Index]
\makeindex[name=notations,title={List of Notations}]
\begin{document}

This is my first index entry\index[index]{first index} under index,  I am defining one more index \index[notations]{$\mathbb R$=Set of all Real numbers}.

\printindex[index]%{Index}
\printindex[notations]%{List of Notations}

\end{document}

相关内容