我正在使用\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}
生成的文档: