文章类中标题前的空间大小是多少?
我想使用\droptitle
fromtitling
将标题放在上边距之后,并且需要值下降。所谓立即,是指与以纯文本开头的文档相同的垂直位置。
答案1
(代码改编自这个答案查询'\maketitle' 如何工作?)
我将首先假设您titlepage
在使用article
文档类时不指定选项。(如果此假设无效,请告诉我。)要摆脱之前默认插入的垂直空间\maketitle
,只需在序言中运行以下代码:
\usepackage{etoolbox}
\makeatletter
\patchcmd{\@maketitle}{\null}{}{}{}
\makeatother
完整的 MWE(最小工作示例)及其输出——由于showframe
加载了可选包,因此插入了框线:
\documentclass{article}
\usepackage{showframe} % draw frame lines around text block
\usepackage{etoolbox}
\makeatletter
\patchcmd{\@maketitle}{\null}{}{}{}
\makeatother
\begin{document}
\title{Hello World}
\author{Somebody}
\maketitle
\end{document}