标题页及更多内容

标题页及更多内容

通常,有许多书籍格式需要在 Latex 中复制,以便学习或设计下一个经典。在此视图中,考虑一本旧书的前几页 约翰·麦考尔 (John Mycall) 的标题页,1778 年 第 1 页,摘自 John Mycall,1778 年 第 2 页,摘自 John Mycall,1778 年

这里的问题是:

  1. 有哪些最佳、简单的方法来设置所呈现的标题页、首页和段落结构?
  2. 正如所呈现的,重现旧字体的有效过程是什么,可以通过简单的包装使用来使用?
  3. 布局尺寸、字体和段落的间距是否可以轻松更改?例如,假设书的宽度为 6 英寸,高度为 8 英寸,字体和段落间距也相应设置。

答案1

你可以得到一些看起来或多或少像图像的东西,如果你使用字体等,历史连字符。这是使用(商业)字体 SabonNext LT Pro 的尝试,fontspec并且XeLaTeX

\documentclass[12pt,b5paper,twoside]{report}

\usepackage{microtype}
\usepackage{fontspec}
\defaultfontfeatures{Numbers = {OldStyle,Proportional},Ligatures = Rare, Style = Historic, StylisticSet={1,5},WordSpace = 1.2}%
\setmainfont{Sabon Next LT Pro}
\usepackage{fourier-orns, multido}
\usepackage[textwidth=110mm, textheight=180mm, marginratio={4:6,5:7},nofoot, nomarginpar]{geometry}
\usepackage{graphicx}
\usepackage{tabularx, booktabs}
\usepackage{enumitem}
\usepackage{titleps}
\renewpagestyle{plain} {%
\sethead{}{[\enspace\thepage\enspace]}{}
}%
\usepackage{setspace}
\pagestyle{plain}

\usepackage{titling}%
\setlength\droptitle {-30mm}
\pretitle{\setstretch{1.25}
\addfontfeature{LetterSpace=20.0}\begin{center}}
\title{%
{\LARGE RESULT}\\%
\textsc{of the}\\%
{\Huge CONVENTION\\%
{\LARGE OF}\\[1.5ex]%
DELEGATES}\\[1.5ex]%
{\setstretch{1}\LARGE \addfontfeature{LetterSpace=2.0} Holden at {\addfontfeature{LetterSpace=20.0}IPSWICH} in the\\
County of Essex, who were\\
Deputed to take into\\
Consideration\\}
\textsc{the}\\[1.5ex]
{\huge\itshape CONSTITUTION}\\
\textsc{and form of}\\[1.5ex]
{\huge GOVERNMENT}\\
\textsc{proposed by the}\\[1.5ex]
\textit{\LARGE CONVENTION} \\[1ex]
\textsc{of the STATE of}\\
\LARGE MASSACHUSETTS-BAY
}

\posttitle{\end{center}\vskip3ex}
\preauthor{\addfontfeature{LetterSpace=20.0}\begin{center}}
\postauthor{\end{center}\vfill}
\author{%
{NEWBURY-PORT}\\[1.5ex]
\textsc{Printed and Sold by John Mycall, 1778}
}
\date{}

\usepackage{polyglossia}

\setmainlanguage{english}

\begin{document}
\pagestyle{empty}
\maketitle

\newgeometry{textwidth=89mm, textheight =158mm, marginratio={4:6,5:7},nofoot}
\noindent\renewcommand\arraystretch{2}
\hskip-0.2em\multido{\n=1+1}{12}{\decoone\decosix}\decoone

\noindent\begin{tabularx}{\linewidth}{@{} >{\centering\LARGE\addfontfeature{LetterSpace=15.0} \arraybackslash}X@{}}
\textsc{r e s u l t} \\
\textsc{\normalsize of the} \\
\itshape CONVENTION, \&c. \\
\bottomrule
\end{tabularx}
\vskip4ex

\setlength\leftskip{1em}{\itshape\hskip-2.3em
  In Convention of Delegates from the several towns of Lynn, Salem, Danvers, Wenham, Manchester, Glou\-cester, Ipswich, Newbury-Port, Salisbury, Methuen, Boxford \& Topfields, holden by adjourment at Ipswich, on the twenty-ninth day of April, one thousand seven hundred \& seventy eight.}

\begin{center}
  \large Peter Coffin Esq ; in the Chair.
\end{center}

\setlength\leftskip{24mm}
\hskip-2em HE Constitution and form of Government framed by the Convention of this State, was read paragraph by paragraph, and after debate, the following passed

\clearpage\pagestyle{plain}
\sloppy
\begin{enumerate}[label = \arabic*., wide, labelsep=1.em
  ]

  \item That the present situation of this State renders it best, that the framing of a Constitution therefor, should be posponed ’till the public affairs are in a more peaceable and settled condition.

  \item That a bill of rights, clearly ascertaining and defining the rights of conscience, and that security of person and property, which every member in the State hath a right to expect from the supreme power thereof, ought to be settled and established, previous to the ratification of any constitution for the State.

  \item That the executive power in any State, ought not to have any share or voice in the legislative power in framing the laws, and therefore, that the second article of the Constitution is liable to exception.

  \item That any man who is chosen Governor, ought to be properly qualified in point of property—that the qualification therefor, mentioned in the third article of the Constitution, is not sufficient—nor is the same qualification directed to be ascertained on fixed principles, as it ought to be, on account of the fluctuation of the nominal value of money, and of property.

  \item That in every free Republican Government, where the legislative power is rested in an house or houses of representatives, all the members of the State ought to be equally represented.

\end{enumerate}

\end{document}

在此处输入图片描述 在此处输入图片描述 在此处输入图片描述

相关内容