使用 quotechap 包将引文和章节标题放在单独的页面上

使用 quotechap 包将引文和章节标题放在单独的页面上

我正在尝试使用该quotchap软件包,但我希望将引文和章节标题放在不同的页面上。也就是说,对于一个章节,我想要一个整页的引文,然后在下一页上显示标准章节标题。

\documentclass{book}
\usepackage[utf8]{inputenc}

\usepackage{quotchap}

\begin{document}
\begin{savequote}[45mm]
---When shall we three meet again
in thunder, lightning, or in rain?
---When the hurlyburly’s done,
when the battle’s lost and won.
\qauthor{Shakespeare, Macbeth}
\end{savequote}

% I want a page break here! But \newpage or \clearpage do not work

\chapter{Classic Sesame Street}
Some chapter text. 

\end{document}

这可能吗?我想在后续章节中恢复标准格式。

答案1

尝试一下这个epigraph包:

% quotchapprob.tex  SE 557722
\documentclass{book}
%\documentclass{memoir} memoir and quotchap don't work together

\usepackage[utf8]{inputenc}

\usepackage{quotchap}

\usepackage{epigraph}
\usepackage{comment}

\begin{document}
\begin{comment}
\begin{savequote}[45mm]
---When shall we three meet again
in thunder, lightning, or in rain?
---When the hurlyburly’s done,
when the battle’s lost and won.
\qauthor{Shakespeare, Macbeth}
\end{savequote}
% I want a page break here! But \newpage or \clearpage do not work
\end{comment}

\mbox{} \thispagestyle{empty} \clearpage  % empty first page and go to second page
\renewcommand{\epigraphflush}{flushleft} % put epigraph at left of page
\epigraph{%
---When shall we three meet again
in thunder, lightning, or in rain?
---When the hurlyburly’s done,
when the battle’s lost and won.}{%
Shakespeare, Macbeth}

\chapter{Classic Sesame Street}
Some chapter text. 

\chapter{Another Road}
Text.

\end{document}

以上是您的 MWE 的修改版本,在此向您表示感谢。您可以使用命令\epigraph将题词放置在您想要的任何位置,还可以调整大小、字体等。请参阅手册(通过)。初步调整是为了确保您的题词位于反面(左侧)页面上,面对正面(右侧)页面上的章节标题。使用类(的超集)texdoc epigraph进行页面调整会容易得多,但不幸的是和不能一起使用。memoirbookmemoirquotchap

相关内容