如何调整目录中“部分”的字体大小

如何调整目录中“部分”的字体大小

在使用以下代码生成的目录中,请注意部分、章节、节的字体大小几乎相同,并且属于同一系列。

我如何调整部分的字体类型和大小,以区别于章节和部分。

\documentclass[12pt]{report}
\usepackage{blindtext}
\title{My Report}
\author{A.U. Thor}
\begin{document}
\maketitle
 \tableofcontents
\part{Part 1}
\chapter{Introduction}
\section{Foo}
\section{Bar}
\blindtext
\chapter{An Overview}
\section{Fiddle}
\section{DeeDee}
\blindtext

\part{Part 2}
\chapter{Introduction}
\section{TweedleDum}
\section{TweedleDee}

\end{document}

enter image description here

答案1

附带tocloft包装:

\documentclass{book} % or whatever
\usepackage{tocloft}
\renewcommand{\cftpartfont}{\Huge\itshape} % Part title in Huge Italic font
\begin{document}
\part{A Part}
\chapter{A Chapter}
\end{document}

您可能需要更改部分的页码以匹配,例如:

\renewcommand{\cftpartpagefont}{\Huge\itshape}

但也可能不是。

阅读手册(> texdoc tocloft)以了解更多信息。

答案2

通过 KOMA 脚本课程,您将拥有一套可以轻松获得所需内容的工具。

smilingbuddhaToc

\documentclass[12pt,egregdoesnotlikesansseriftitles]{scrreprt}
\usepackage{blindtext}
\title{My Report}
\author{A.U. Thor}
\RedeclareSectionCommand[tocindent=-1em,tocentryformat=\sffamily\bfseries,tocpagenumberformat=\tiny]{part}
\begin{document}
\maketitle
 \tableofcontents
\part{Wombats}
\chapter{Introduction}
\section{Foo}
\section{Bar}
\blindtext
\chapter{An Overview}
\section{Fiddle}
\section{DeeDee}
\blindtext

\part{Capybaras}
\chapter{Introduction}
\section{TweedleDum}
\section{TweedleDee}

\end{document}

注意:部分条目的字体发生了变化,页码的字体发生了不同的变化,部分条目缩进,并且在标题页之后未重新设置页码。三个问题一并回答。

相关内容