我怎样才能获得这个标题页?

我怎样才能获得这个标题页?

另一半文档格式

我想要我的大学标题页,但我不知道是否可以得到它。因为我尝试了很多课程,但没有得到正确的格式。有人能帮我得到它吗?我不知道如何获得与要求完全相同的正确格式。所以我加入了标签。我希望我能得到一个借口。

\newenvironment{alwayssingle}{%
       \@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
       \else\newpage\fi}
       {\if@restonecol\twocolumn\else\newpage\fi}

\newenvironment{custom}{}

%define title page layout
\renewcommand{\maketitle}{%
\pagenumbering{roman} % Sasa Tomic
\setcounter{page}{0}  % Sasa Tomic
\begin{alwayssingle}
    \renewcommand{\footnotesize}{\small}
    \renewcommand{\footnoterule}{\relax}
    \thispagestyle{empty}
%  \null\vfill
  \begin{center}
   \begin{flushleft} { \Large {\bfseries {\@university}} \par} \end{flushleft}
    \begin{flushleft} {{\Large \@collegeordept} \par} \end{flushleft}
    \begin{flushleft} {{\Large Author: \@author} \par} \end{flushleft}
    \begin{flushleft} {{\Large E-mail address: [email protected]} \par}
    \end{flushleft}
    \begin{flushleft} {{\Large Study programme: Msc Computer Science} \par}
    \end{flushleft}
    \begin{flushleft} {{\Large Examiner: Blah Blah} \par} \end{flushleft}
    \begin{flushleft} {{\Large Tutors: Andreas Nordgren, email} \par}
    \end{flushleft}
    \begin{flushleft} {{\Large Scope: ??? words inclusive of appendices} \par}
    \end{flushleft}
    \begin{flushleft} {{\Large Date: \@degreedate} \par} \end{flushleft} 
    {\large \ {{\@crest} \par} \vspace*{25mm}}
     {\large {M.Sc. Thesis within Computer Engineering 30hp points} \par}
      { \Large {\bfseries {\@title}} \par}
      {\normalsize {Subtitle} \par}
      {\Huge {\@author} \par}
  \end{center}

\end{alwayssingle}}

答案1

正如我在评论中提到的,您只需要titlepage环境来自己创建标题。

\documentclass[11pt,english]{report}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\usepackage{isodate}

\begin{document}
  \begin{titlepage}
    \sffamily
    \raggedright
    \textbf{University}\\
    The Department of Information Technology and Media (ITM)\\
    Author: [Author's Name]\\
    E-Mail address: [Author's E-Mail address]\\
    Study programme: [Study programme, credit points]\\
    Examiner: [Dr. Anders Andersson, e-mail address]\\
    Tutors: [Bertil Bertilsson, organiston X, e-mail address]\\
    Scope: 6630 words inclusive of appendices\\
    Date: \isodate{\today}

    \centering
    \vfill
    [Place for Illustration]
    \vfill
    \large
    [B.Sc. Thesis / M.Sc. Thesis / project report\\
    within Computer Engineering / Electrical Engineering\\
    A/B/C/D, course, X points]\\[\bigskipamount]
    \huge
    [Title]\\
    \large
    [Subtitle]\\[\bigskipamount]
    \huge
    [Author's Name]
  \end{titlepage}
\end{document}

答案2

除了必须显示的文本之外,您并没有提供很多有关标题页规格的信息。因此,以下代码只能被视为您所需的初步近似值。

\documentclass[a4]{report}
\usepackage{helvet}
\usepackage[demo]{graphicx}
\usepackage[hmargin=1.5in,vmargin=1.25in]{geometry}

\newenvironment{specialtitlepage}{%
   \clearpage % make sure we start on a new page
   \sffamily
   \obeylines
   }{\thispagestyle{empty}
   \clearpage} % make sure to end page at end of env.

\begin{document}
\begin{specialtitlepage}
\textbf{\large University}
The Department of Information Technology and Media (ITM)
Author: [xyz]
Email address: [xyz]
Study programme: [xyz,  credit points]
Examiner: [xyz, email address]
Tutor: [name, organization, email address]
Scope: [xyz]
Date: [xyz]

\vspace{4cm}
\begin{center}
[Place for illustration]
\includegraphics{something.pdf}
\end{center}

\vspace{3cm}

\begin{center}
[B.Sc. degree, etc
within Computer Engineering, etc
... X points]

\vspace{1.5cm}
{\Large\textbf{Title}}
Subtitle

\vspace{0.5cm}
{\Large\textbf{Author's Name}}
\end{center}

\end{specialtitlepage}
\end{document}

在此处输入图片描述

相关内容