논문 제목 페이지 디자인에 도움

논문 제목 페이지 디자인에 도움

제목 페이지를 제대로 표시하는 데 문제가 있습니다. 몇 가지 질문:

  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}

당신은 이것을 얻습니다 :

여기에 이미지 설명을 입력하세요

관련 정보