不同类型的索引数字

不同类型的索引数字

当我使用该软件包时,makeidx索引章节以以下文本开头:“斜体数字代表描述相应条目的页面;带下划线的数字代表定义;罗马数字代表使用该条目的页面。”

%%% Preamble

\documentclass[paper=a4, fontsize=12pt]{report}
\usepackage{hyperref}
\usepackage{multicol}
\usepackage{doc}
%%%%%% Indexing %%%%%%
\usepackage{makeidx}
\makeindex
%%% Begin document
\begin{document}
\chapter{Cats}
\index{cat} Text about cats
\printindex
\end{document}

从而产生 代码生成的文档

我怎样才能删除此文本或使引用的页面具有指定的格式?

@Andrew 我担心我需要那个包,因为我使用的是 minitoc.ist 风格,我自己的版本因为我必须定义一些东西,这需要 doc 包,请参阅制作索引时出现的问题

答案1

据我所知,获取此消息的唯一方法是使用 doc 包。此包仅在您为 LaTeX 包生成文档时才有用,而这听起来好像您没有这样做。要删除它,只需将其\usepackage{doc}从您的序言中删除。由于您没有提供 MWE,因此无法查看这是否是您实际在做的事情。

编辑如果您确实需要使用该doc包,那么您可以使用以下命令删除/更改此消息\IndexPrologue

\documentclass[paper=a4, fontsize=12pt]{report}
\usepackage{hyperref}
\usepackage{multicol}
\usepackage{doc}
%%%%%% Indexing %%%%%%
\IndexPrologue{\section*{Index}\markboth{Index}{Index}}% section heading, no message
\usepackage{makeidx}
\makeindex
%%% Begin document
\begin{document}
\chapter{Cats}
\index{cat} Text about cats
\printindex
\end{document}

给予:

在此处输入图片描述

相关内容