答案1
如果您不喜欢默认标题页,我建议使用titlepage
环境构建自定义标题,例如:
\documentclass{scrbook}
\usepackage[showframe,margin=4cm,a4paper]{geometry}
\begin{document}
\begin{titlepage}
\centering
\huge\textsf{\textbf{TITLE}}
\bigskip
\normalsize \today
\end{titlepage}
\end{document}
看约翰内斯回答“如何定制我的标题页?”以获取更多建议。
但如果你真的只是想删除最初的垂直跳过,你也可以修补\maketitle
:
\documentclass{scrbook}
\usepackage[showframe,margin=4cm,a4paper]{geometry}
\usepackage{xpatch}
\xpatchcmd{\maketitle}{\null\vfill}{}{}
\begin{document}
\title{TITLE}
\maketitle
\end{document}