重新定义 \part 样式

重新定义 \part 样式

我正在使用\documentclass{book}。我想修改我的\part样式,以便我可以获得一个页面,例如说明以下内容(基本上是部分标题+底部的引文):

\begin{flushleft}
\chapter*{\Huge\scshape Part I:\\ Part Title}
\end{flushleft}

\addcontentsline{toc}{chapter}{Part I: Part Title}


\vspace*{3cm}
\epigraph{``bla bla.''}{Mr. Bla-Bla}

答案1

一个选择是使用epigraph题词和titlesec包可轻松自定义部分标题格式。一个小例子(请注意\epigraphhead必须使用 \part):

\documentclass{book}
\usepackage{epigraph}
\usepackage{titlesec}

\makeatletter
\titleformat{\part}[display]
  {\Huge\scshape\filright}
  {\partname~\thepart:}
  {20pt}
  {\thispagestyle{epigraph}}
\makeatother
\setlength\epigraphwidth{.6\textwidth}


\begin{document}

\epigraphhead[450]{Fairy tales are more than true: not because they tell us that dragons exist, but because they tell us dragons can be beaten.\par\hfill\textsc{C.K. Chesterton}}
\part{A Test Part Title}

\end{document}

生成的文档:

在此处输入图片描述

相关内容