我试图模仿与下图完全相同的标题页。它有一个长标题,分布在多行中,每行都有不同的字体大小。
我正在使用 Memoir 类。使用 LaTeX 模拟这种标题页的最佳方法是什么?
注意:我可以接受标题内容的重复。也就是说,我可以接受 \title 中只写“圣本笃的生平和奇迹”,而我手动将“圣父本笃的生平和奇迹”(等等)放在同一个文档的另一个位置。两个地方的文字有点重复,但我可以接受。我认为其中一个是“官方”标题,另一个是“花哨”标题。
这是我想要转换为标题页的代码,如下图所示:
The
Life and Miracles
of the
Holy Father Benedict.
Translated from the
Second Book of the Dialogues of St. Gregory the Great,
by the
Rev. Henry Formby.
Followed by the
Spirit of the Rule of St. Benedict,
By the
Right Rev. Dr. Ullathorne,
Bishop of Birmingham.
答案1
以下是根据 的文档改编的示例,memoir
仅供您参考。请参阅titlepages.sty
文档目录中的更多示例。我以那里的示例为基础,这样我就不必从头开始输入内容,因为当时问题中没有提供任何文本。
\documentclass[a4paper]{memoir}
\usepackage[T1]{fontenc}
\usepackage{tgschola}
\begin{document}
% adapted from titlepages.sty in memoir's documentation
\newcommand*{\covertext}{%
{\LARGE THE NEW\medskip\par}
{\HUGE FAMILY RECEIPT BOOK\bigskip\par}
{\normalsize CONTAINING A LARGE COLLECTION OF\par}
{\large HIGHLY ESTIMATED RECEIPTS IN A VARIETY\par}
{\large OF BRANCHES, NAMELY:\medskip\par}
{\HUGE BREWING,\smallskip\par}
{\Huge MAKING AND PRESERVING BRITISH WINES,\smallskip\par}
{\HUGE DYING,\smallskip\par}
{\huge RURAL AND DOMESTIC ECONOMY,\bigskip\par}
{\large SELECTED FROM EXPERIENCED \& APPROVED RECEIPTS,\medskip\par}
{\LARGE\textsf{FOR THE USE OF PUBLICANS}\medskip\par}
{\large AND HOUSEKEEPERS IN GENERAL,\medskip\par}
{\normalsize A GREAT MANY OF WHICH WERE NEVER BEFORE PUBLISHED.\par}
{\Huge
\rule{0.25\textwidth}{0.4pt}%
\par BY G.~MILLSWOOD.\par}
{\large
\rule{0.75\textwidth}{0.4pt}\smallskip\par
\textsf{PRICE ONE SHILLING}\par}
{\large
\rule{0.5\textwidth}{0.4pt}\smallskip\par
DERBY: PRINTED AND SOLD BY G.~WILKINS AND SON,\smallskip\par}
{\large QUEEN STREET.\par}}
\clearpage
\thispagestyle{empty}
\begin{center}
\vfill
\covertext
\vfill
\end{center}
\clearpage
\end{document}
编辑
这是使用更新问题中提供的文本的版本。microtype
用于给主标题添加字母间距。
\documentclass[a4paper]{memoir}
\usepackage[T1]{fontenc}
\usepackage{tgschola,microtype,yfonts}
\begin{document}
\thispagestyle{empty}
{\centering
{\small\MakeUppercase{The}\bigskip\par}
\vfill
{\HUGE\lsstyle\MakeUppercase{Life and Miracles}\bigskip\par}
\vfill
{\small\MakeUppercase{of the}\bigskip\par}
\vfill
{\Huge\MakeUppercase{Holy Father Benedict.}\bigskip\par}
\vfill
{\small\MakeUppercase{Translated from the}\bigskip\par}
{\normalsize\MakeUppercase{Second Book of the Dialogues of St. Gregory the Great,}\bigskip\par}
{\small\MakeUppercase{by the}\bigskip\par}
{\Large\MakeUppercase{Rev.\ Henry Formby.}\bigskip\par}
{\small\MakeUppercase{Followed by the}\bigskip\par}
{\LARGE\MakeUppercase{Spirit of the Rule of St.\ Benedict,}\bigskip\par}
{\small\MakeUppercase{By the}\bigskip\par}
{\Large\MakeUppercase{Right Rev.\ Dr.\ Ullathorne,}\bigskip\par}
{\small\MakeUppercase{Bishop of Birmingham.}\par}
{\bigskip\par\normalsize\textfrak{With Ten Illustrations from Original Designs.}\par}
\vfill
\rule{0.5\textwidth}{0.4pt}\par
\vfill
{\large\MakeUppercase{The Depot of the Pictorial Bible Stories,}\smallskip\par}
{\normalsize\MakeUppercase{87 Great Russell Street, Birmingham:}\medskip\par}
{\small\MakeUppercase{Sold by}\smallskip\par}
{\large\MakeUppercase{Burns and Lambert, 17 Portman Street, London;}\smallskip\par}
{\normalsize\MakeUppercase{J. Murphy, Baltimore.}\par}
}
\clearpage
\end{document}