不需要的空頁,使用大學提供的樣式文件

不需要的空頁,使用大學提供的樣式文件

我的大學有一個標題頁模板,他們希望我們將其用於碩士論文。

但是,它在標題頁之前和之後添加了一個額外的空白頁(之後給出了兩個,因此不需要一個)。我發現短標題沒有這個問題。有什麼想法如何修復它嗎?如果我手動打破我的標題也沒有幫助。

另外,大學的名稱有時會出現在第三頁上...

我們得到的 sty 檔是:

\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{MA_Titlepage}[2010/04/25]


\newcommand*{\betreuer}[1]{\def\@betreuer{#1}}
\betreuer{}
\newcommand*{\ausarbeitungstyp}[1]{\def\@ausarbeitungstyp{#1}}
\ausarbeitungstyp{}
\newcommand*{\geburtsdatum}[1]{\def\@geburtsdatum{#1}}
\geburtsdatum{}
\newcommand*{\geburtsort}[1]{\def\@geburtsort{#1}}
\geburtsort{}
\newcommand*{\institut}[1]{\def\@institut{#1}}
\institut{}
\newcommand*{\authornew}[1]{\def\@authornew{#1}}
\authornew{}

\renewcommand\maketitle{\begin{titlepage}
  \let\footnotesize\small
  \let\footnoterule\relax
  \let \footnote \thanks
  \null\vfil

\begin{center}%

\parbox{10cm}{\begin{center}\Huge\bfseries \@title \par\end{center}}\\
\vspace{1em}
{\Large
\vspace{1em}
\@authornew}\\
\vspace{1em}
Born   \@geburtsdatum \ in \@geburtsort\\
\vspace{1em}
{\large \@date}
\vspace{15em}

{\large \@ausarbeitungstyp}\\
\vspace{1em}
{\large \@betreuer}\\
\vspace{1em}
\centerline{{\large\sc \@institut}}
\vspace{15em}

\centerline{{\large\sc Mathematische Fakult\"at der}}
\vspace{1em}
\centerline{{\large\sc Universitaet Nordpol}}

\end{center}

\vfil\null
\clearpage
\thispagestyle{empty}\mbox{}
\clearpage
\pagenumbering{arabic}

\end{titlepage}

  \setcounter{footnote}{0}%
  \global\let\maketitle\relax
  \global\let\@author\@empty
  \global\let\@date\@empty
  \global\let\@title\@empty
  \global\let\title\relax
  \global\let\author\relax
  \global\let\date\relax
  \global\let\and\relax
}


\endinput

我目前正在通過使用它

\documentclass[11pt, a4paper, UKenglish]{article}

\usepackage[UKenglish]{babel}
\usepackage{MA_Titlepage}

\authornew{X Y}
\geburtsdatum{1st April 1900}
\geburtsort{New York, U.S.A.}
\date{\today}

\betreuer{Advisor: Prof. Dr. Z Z}
\institut{Mathematical Institute}

\title{This is only an example}

\ausarbeitungstyp{Master's Thesis  Mathematics}

\begin{document}

    \maketitle

\end{document}

如果我用“示例”替換“這只是一個示例”,我會得到我想要的。

答案1

嗯,一組「有趣」的宏:-)

假設您不想參與有關更改機構範本的討論,您可以這樣做

\documentclass[11pt, a4paper, UKenglish]{article}

\usepackage[UKenglish]{babel}
\usepackage{MA_Titlepage}

\authornew{X Y}
\geburtsdatum{1st April 1900}
\geburtsort{New York, U.S.A.}
\date{\today}

\betreuer{Advisor: Prof. Dr. Z Z}
\institut{Mathematical Institute}


\title{This is only an example}


\ausarbeitungstyp{Master's Thesis  Mathematics}

\begin{document}

\noindent\begin{minipage}{\textwidth}
\vspace*{-60pt}
    \maketitle
\end{minipage}

\end{document}

答案2

該命令\null\vfil似乎是錯誤的,但在我看來,模板看起來有點奇怪。 (看什麼是 \null 以及我們什麼時候需要使用它?請上\null

\null\vfil一個快速的解決方案是使用\patchcmdfrom etoolboxpackage.json來修補命令,而不是直接編輯模板(好吧,無論如何都應該這樣做) 。

\documentclass[11pt, a4paper, UKenglish]{article}

\usepackage[UKenglish]{babel}
\usepackage{MA_Titlepage}

\usepackage{etoolbox}

\patchcmd{\maketitle}{\null\vfil}{}{}{}


\authornew{X Y}
\geburtsdatum{1st April 1900}
\geburtsort{New York, U.S.A.}
\date{\today}

\betreuer{Advisor: Prof. Dr. Z Z}
\institut{Mathematical Institute}



\title{This is only an example}

\ausarbeitungstyp{Master's Thesis  Mathematics}

\begin{document}

    \maketitle

\end{document}

相關內容