使用 maketitle 减少顶部的空间

使用 maketitle 减少顶部的空间

我正在使用 XeLaTeX 来处理文档,并想为标题页设置样式。问题是,这\maketitle会占用较大的顶部空间,我的文本从顶部开始约 10 厘米。我该如何减少这个空间?目前,它在底部看起来非常卷曲。

这是明确的代码:

\documentclass[a4paper,12pt,twoside,ngerman]{article}
\parindent0pt
\parskip6pt
\usepackage{fontspec}
\usepackage{lmodern}
\usepackage{microtype}

\setmainfont[Path = fonts/,
    BoldFont = akko-w01-bold.ttf,
    ItalicFont = akko-w01-italic.ttf,
    BoldItalicFont = akko-w01-bold-italic.ttf
 ]{akko-w01-regular.ttf}

\usepackage[ngerman]{babel} % Paket für die neue deutsche Rechtschreibung
\usepackage[...]{hyperref}
...
\title{Title}
\date{}
\author{}
\begin{document}
\input{./acronyms}
\input{./glosaries}
\maketitle
\thispagestyle{empty}
\begin{center}
\textbf{{\large Thesis}}\\
\ \\
von

Name Name\\
aus City

Matrikel-Nr.: Number

{\today}\\
\ \\
\ \\
\textbf{{\large University}}

University long

University subtitle

Vorgelegt bei

\textbf{Name of the prof}

\ \\
\textbf{{\large company}}

department

city
\end{center}


\begin{minipage}{.5\textwidth}
  \begin{flushleft}
    \includegraphics[width=0.9\linewidth]{images/university.png}
  \end{flushleft}
\end{minipage}%
\begin{minipage}{.5\textwidth}
\begin{flushright}
    \includegraphics[width=0.9\linewidth]{images/company.png}
\end{flushright}
\end{minipage}

答案1

\vspace在标题命令中包含该命令,即更改该行

\title{Title}

进入

\title{\vspace{-2cm}Title}

答案2

这个titling包可以帮助你解决这个问题。

从其文档

该包提供对命令ti­tling排版的控制\maketi­tle

对于您来说,在序言中添加以下几行(-3cm根据您的需要进行调整)应该可以实现您想要的效果:

\usepackage{titling}
\setlength{\droptitle}{-3cm}

查看文档以了解更多选项(例如标题后的间距)

相关内容