大学から提供されたスタイルファイルを使用した不要な空のページ

大学から提供されたスタイルファイルを使用した不要な空のページ

私の大学には修士論文に使用するタイトルページのテンプレートがあります。

ただし、タイトル ページの前後に空のページが追加されます (その後に 2 ページ追加されるため、1 ページは不要になります)。短いタイトルでは問題が発生しないことがわかりました。修正方法はありますか? タイトルを手動で分割しても解決しません。

また、大学名が3ページ目に表示されることもあります...

提供される 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します)

テンプレートを直接編集する代わりに (まあ、いずれにせよそうすべきですが)、簡単な解決策は、from package を\null\vfil使用してコマンドを修正することです。\patchcmdetoolbox

\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}

関連情報