这个问题类似于他的问题。
我制作了一个目录,但并未引用目录作为第一条条目。
\documentclass[12pt,a4paper]{report}
\usepackage[a4paper,margin=6mm, bottom=14mm]{geometry}
\usepackage{amsmath}
.
.
.
\title{COMPUTATIONAL METHODS FOR THE RIEMANN ZETA FUNCTION}
\author{Axion004}
.
.
.
\begin{document}
\maketitle
\pagestyle{empty}
\pagenumbering{gobble} %????
\tableofcontents
\clearpage
\pagestyle{axionstyle}
\pagenumbering{arabic}%
\section*{Summary}
.
.
.
\end{document}
PDF 看起来像
如何调整上面的屏幕截图,使“目录”作为条目出现在“摘要”上方?也就是说,我想将目录作为目录的一部分。
答案1
软件包tocbibind
是实现此目的的最简单方法。如果需要,它有多个选项可以防止LoF
,LoT
或者bib
在 ToC 中。
\documentclass[12pt,a4paper]{report}
\usepackage[a4paper,margin=6mm, bottom=14mm]{geometry}
\usepackage{amsmath}
\usepackage{tocbibind}
\title{COMPUTATIONAL METHODS FOR THE RIEMANN ZETA FUNCTION}
\author{Axion004}
\begin{document}
\maketitle
\pagestyle{empty}
\pagenumbering{gobble} %????
\tableofcontents
\clearpage
%\pagestyle{axionstyle}
\pagenumbering{arabic}%
\section*{Summary}
\chapter{Some chapter}
\end{document}
答案2
使用类(它是报告文章类memoir
的超集)很简单book,
and
\documentclass[...]{memoir}
...
\begin{document}
\tableofcontents
使用Instead 会得到与类中\tableofcontents*
相同的结果\tableofcontents
book/report