使用小型大写字母时将标题页的作者姓名拆分为两行

使用小型大写字母时将标题页的作者姓名拆分为两行

我正在使用\maketitle并希望将作者姓名分成两行,中间留出可调整的间距。

我也在使用小型大写字母\author,这似乎导致了问题。

例如,当我使用以下代码编译时pdflatex

\documentclass[titlepage,10pt]{book}
\usepackage[showframe,margin=.25in,paperwidth=4in,paperheight=5.5in]{geometry}
\textheight=4.75in
\usepackage[frame,noinfo,center]{crop}
\usepackage{microtype,scalefnt}
\date{}

\title{TITLE\\[-4pt] {\scalefont{0.45}{{\textit{OF THE}}}}\\[3pt] BOOK}
\author{The\\[3pt] Author}
%\author{{\scshape{The\\[3pt] Author}}}

\begin{document}
\thispagestyle{empty}
\maketitle
\end{document}

我得到了我想要的:

在此处输入图片描述

但是,当我使用author命令时

\author{{\scshape{The\\[3pt] Author}}}

我明白了

在此处输入图片描述

错误消息

[![enter image description here][3]][3]

请注意,尽管有错误消息,但作者的姓名分布在两行,但只有第一行是小写字母。

我应该如何为作者指定小写字母,以便我可以轻松地将姓名分成两行,并且两行之间的垂直间距可以调整?

答案1

尝试一下这个代码。

\documentclass[titlepage,10pt]{book}
\usepackage[showframe,margin=.25in,paperwidth=4in,paperheight=5.5in]{geometry}
\textheight=4.75in
\usepackage[frame,noinfo,center]{crop}
\usepackage{microtype,scalefnt}
\date{}

\title{TITLE\\[-4pt] {\scalefont{0.45}{{\textit{OF THE}}}}\\[3pt] BOOK}
\author{\textsc{The} \\[3pt]  \textsc{Author}}% <<<<<<<<<<<<<<<<

\begin{document}
    \thispagestyle{empty}
    \maketitle
\end{document}

A

相关内容