标题页未居中

标题页未居中
\documentclass[a4paper,twoside]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel} 
\usepackage{graphicx} 
\usepackage{epstopdf}

\chapterstyle{ell}

\usepackage{blindtext} 

\title{Title} 

\author{Name}

\date{\today} 
\newcommand{\institution}{University\xspace}

\newcommand{\department}{Department\xspace} 

\renewcommand{\maketitlehooka}{
\centering
%\includegraphics[width=2.5cm]{}\\[.5cm]
\institution\\ 
\emph{\department}\\[.2cm] 
Bachelorarbeit 
\par
\hrulefill
\vfill}
\renewcommand{\maketitlehookb}{\vfill}
\renewcommand{\maketitlehookc}{
\vfill
\begin{flushleft}
Gutachter:\\
\textbf{Name}\\[.3cm] 
Betreuer:\\
\textbf{Name}\\[.3cm] 
\end{flushleft}
\vfill}
\preauthor{\begin{flushright}Bachelorarbeit von:\\\bfseries} 
\postauthor{\end{flushright}} 
\begin{document}
\begin{titlingpage}
\thispagestyle{empty}
\maketitle 
\end{titlingpage}
\end{document}

在回忆录课的基础上美极回忆录论文我尝试开始格式化我的论文。但是标题页没有居中,但我希望它居中。

我只想删除标题页的右侧框,以便它不仅位于文本区域的中心,而且位于整张纸的中心。

在此处输入图片描述

在此处输入图片描述

答案1

这只是我通常如何在回忆录文档中将标题页居中的示例。此示例中的边距相当大,以更好地显示效果:

\documentclass[a4paper]{memoir}

% just an example
\setlrmarginsandblock{4cm}{8cm}{*}
\checkandfixthelayout
\usepackage{kantlipsum}

\pagestyle{showlocs}

\begin{document}

\begin{titlingpage}
  \calccentering\unitlength % ok to mess with unitlength inside a group

  \begin{adjustwidth}{\unitlength}{-\unitlength}
    \kant[1]

    \bigskip

    \begin{adjustwidth}{-2cm}{-2cm}
      \kant[2]
    \end{adjustwidth}

  \end{adjustwidth}

\end{titlingpage}

 \kant

\end{document}

示例中的几页

在此处输入图片描述

在此处输入图片描述

相关内容