帮助设计论文标题页

帮助设计论文标题页

我无法使标题页看起来正确。几个问题:

  1. 我怎样才能沿着文本移动以使其不发生移动?
  2. 我不想使用绝对坐标(即我之前有 yshift=-15cm,但是一次设置整个页面的样式变得非常复杂)。
  3. 我采用的方法是最好的吗?也许有更好的方法。

这就是我需要的样子(当然,没有最上面两行): 在此处输入图片描述

但这是我得到的:

在此处输入图片描述

我的代码如下:

% Title Page Variables
\title{Mining Partially Ordered Sequential Rules on Unbounded Data}
\author{Andriy Drozdyuk}
\def\previousDegrees{Bachelor of Computer Science, University of Toronto, 2001}
\def\subtitleTemplate{A Thesis Submitted in Partial Fulfillment
       of the Requirements for the Degree of}
\def\degree{Masters of Computer Science}
\def\gau{Computer Science}
\def\supervisorMain{Michael W. Fleming, Ph.D., Professor, Faculty of Computer Science}
\def\supervisor{Scott Buffett, Ph.D., Adjunct Professor, Faculty of Computer Science}

\def\board{Name, Degree, Department, Chair}
\def\examiner{Name, Degree, Department/Field, Institution PhD Only}
\def\submissionDate{January, 2017}
\def\gradYear{2017}
\def\unb{\MakeUppercase{The University of New Brunswick}}
% Title Page Sizes
\def\mytitlewidth{12cm}

% Title Page Layout

\makeatletter
\begin{titlepage}
  % Remember where the picture is relative to the page
  % Overlay keeps the bounding box under control - prevents growing
  % to encompass the referenced points (e.g. current page)
  \begin{tikzpicture}[remember picture, overlay]

    \node[yshift=-6cm] at (current page.north) (title) [text width=\mytitlewidth, align=center]{\LARGE\MakeUppercase{\@title}};
    \node[yshift=-1cm] at (title) (by) [text width=\mytitlewidth, align=center]{by};
    \node[yshift=-1cm] at (by) (author) {\Large\@author};

    \node[yshift=-1cm] at (author) (previousDegrees) {\previousDegrees};

    \node[yshift=-1cm] at (previousDegrees) (subtitle) {\subtitleTemplate};

    \node[yshift=-1cm] at (subtitle) (degree) {\degree};

    \node[yshift=-1cm] at (degree) (gau) {in the Graduate Academic Unit of \gau};

    \node[right,yshift=-1cm] at (gau) (supervisors) {Supervisors:};

    \node[right, xshift=4cm, align=left] at (supervisors) {\supervisorMain};
    \node[right, xshift=4cm, yshift=-1cm,align=left] at (supervisors) {\supervisor};

    \node[right,yshift=-2cm] at (supervisors) (examBoard) {Examining Board:};
    \node[right,xshift=4cm] at (examBoard) {\board};

    \node[right,yshift=-2cm] at (examBoard) (externalExaminer) {External Examiner:};
    \node[right,xshift=4cm] at (examBoard) {\examiner};

    \node[yshift=-3cm] at (externalExaminer) (acceptedBy) {This thesis is accepted by the};
    \node[yshift=-1cm] at (acceptedBy) (dean) {Dean of Graduate Studies};

    \node[yshift=-2cm] at (dean) (unb) {\unb};

    \node[yshift=-2cm] at (unb) (submissionDate) {\submissionDate};

    \copyright\node[yshift=-2cm] at (submissionDate) (authorYear) {\@author, \gradYear};
  \end{tikzpicture}

\end{titlepage}
\makeatother

答案1

您可以从以下简单的事情开始(注意您所在机构的实际要求):

\documentclass[12pt]{report}
\usepackage{newtxtext}
\usepackage[margin=1in]{geometry}
\begin{document}

\begin{titlepage}
\centering
\setlength{\parindent}{0in}

{\fontsize{16}{19}\selectfont%
MINING PARTIALLY ORDERED SEQUENTIAL RULES\\ ON UNBOUNDED DATA\par
}

\vskip2\baselineskip
by

\vskip2\baselineskip
Andriy Drozdyuk\par
Bachelor of Computer Science, University of Toronto, 2001

\vskip2\baselineskip
A Thesis Submitted in Partial Fulfillment of\\ the Requirements for the Degree of

\vskip2\baselineskip
Masters of Computer Science

\vskip2\baselineskip
in the Graduate Academic Unit of Computer Science

\vfill
\begin{tabular}{ll}
Supervisors: & Michael W. Fleming, Ph.D., Professor, Faculty of Computer Science\\
             & Scott Buffett, Ph.D., Adjunct Professor, Faculty of Computer Science\\
             &                                    \\
Examining Board: & Name, Degree, Department, Chair\\
             &                                    \\
External Examiner: & Department/Field, Institution PhD Only             
\end{tabular}


\vfill
This thesis is accepted by the\\
Dean of Graduate Studies

\vskip2\baselineskip
THE UNIVERSITY OF NEW BRUNSWICK\par
January, 2017

\vskip2\baselineskip
\copyright\ Andriy Drozdyuk, 2017

\end{titlepage}

\end{document}

您将获得以下信息:

在此处输入图片描述

相关内容