article
当我使用和类制作目录时,report
结果不同。我有两个问题。
为什么会发生这种情况?
我怎样才能使
report
ToC 看起来像article
一个?
以下是两个例子:
\documentclass[]{report}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\section{Section}
\lipsum
\end{document}
\documentclass[]{article}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\section{Section}
\lipsum
\end{document}
答案1
默认情况下,目录中的“顶级”条目将以粗体显示,并且条目名称和页码之间没有虚线。对于文章类,“顶级”是\section
,而对于报告(和书籍)类则是\chapter
。只需在第一个示例中更改为 ,\section
即可\chapter
获得(大致)相同的目录布局。