每章首页的献词

每章首页的献词

是否已经有可以在章节第一页插入致谢的环境?(如下图所示)

\documentclass{book}
\begin{document}
\chapter{one}
\end{document}

在此处输入图片描述

答案1

epigraphmemoir类都满足这一点。恐怕您必须阅读文档才能了解如何为您的特定献词文本获得良好的垂直间距,因为章节标题可能需要向下移动以留出献词的空间。一个例子是(减去任何拼写错误):

\epigraphhead[70pt]{\epigraph{\textit{To John Doe...}}{\textit{2015}}}
\dropchapter{2in}
\chapter{one}
\undodrop
...

编辑不幸的是,上面的示例代码确实包含一些拼写错误。这是一个有效的 MWE(除非我添加了更多拼写错误):

\documentclass{book}
\usepackage{epigraph}
\begin{document}
\dropchapter{2in}
\chapter{First} % must be immediately followed by \epigraphhead
\epigraphhead[70]{\epigraph{\textit{To John Doe ...}}{\textit{2015}}}
\undodrop
First sentence.
\end{document}

\epigrahhead将其参数( )设置为页眉下方的\epigraph一段距离70\unitlength\unitlength通常设置为)。宏将章节标题降低 2 英寸,以便为题词留出空间,并取消任何后续章节的下拉。宏有两个参数,第一个是题词(在您的例子中是献词)文本,第二个通常是作者(在您的例子中是日期)。题词文本和作者通常设置为罗马字体,但在示例中将设置为斜体。1pt\dropchapter\undodrop\epigraph

相关内容