如何生成报告的索引页?

如何生成报告的索引页?

我正在写一份报告,其中需要在报告开头写页面索引。

    XYZ 
    This is my first section which may use n number of pages.

    DEF
    This section may use m number of pages.

    ABC 
    This section may use p number of pages.

我还需要添加图像,如下所示。

在此处输入图片描述

我如何控制它并将其写入索引页上。

问候

答案1

我不确定您是否想要目录(简单添加\tableofcontents{})或字母索引,但此示例同时包含两者:

\documentclass{report}
\usepackage{makeidx}
\makeindex
\begin{document}
\tableofcontents{}
\part{ABC}
\index{ABC}ABC 
\part{DEF}
\index{DEF}DEF 
\part{XYZ}
\index{XYZ}XYZ
\printindex{}
\end{document}

请记住,您需要运行pdflatex myfile.tex两次才能获得目录。如果有字母索引,则还需要一个makeindex myfile.idxpdflatex myfile.tex然后myfile.ind再次运行pdflatex myfile.tex

编辑 1:正如在编辑的问题中您提到的那样,report并且section可能您更喜欢在文档类中report使用而不是进行更改。article\section\part

编辑 2:现在的问题是在目录中包含图像。这不是一件容易的事,但有一个解决方案设计目录的资源. 也可能令人感兴趣 在目录中包含图像吗?

相关内容