如何确定在 \maketitle 前面添加的垂直空间的确切尺寸?

如何确定在 \maketitle 前面添加的垂直空间的确切尺寸?

我怎样才能\maketitle不在标题前添加任何垂直空格?回忆录手册(第 65 页)写道:

\maketitle 命令将标题置于页面的特定高度。您可以通过长度 \droptitle 更改标题的垂直位置。为其指定正值将降低标题,而指定负值将提高标题。

“在特定高度”可能意味着这取决于许多因素,因此在不同情况下情况并不相同。但我该如何才能确切地知道我的情况是多少?有没有比反复试验更好的方法?

\documentclass{memoir}
\setlength{\droptitle}{0pt}
\author{Me}
\title{Something}
\begin{document}
\maketitle
Some text also.
\end{document}

答案1

尝试这个:

% droptitleprob.tex  SE 552139

\documentclass{memoir}
\usepackage{lipsum}
\LARGE\setlength{\droptitle}{-2em}\normalsize
\addtolength{\droptitle}{-1.5\baselineskip}
\author{Me}
\title{Something}
\begin{document}
\maketitle
Some text also.
 
\lipsum{1,2}

\end{document}

长度从memoir.cls代码中抄袭而来,并将标题的第一行放在与下一页文本的第一行相同的高度。

相关内容