创建论文封面

创建论文封面

我正在尝试从头开始撰写论文。我该如何设计这样的封面?

在此处输入图片描述

这是我的 LateX 源文件。

\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}

\title{
{Thesis Title}\\
{\large Institution Name}\\
{\includegraphics[scale=0.10]{logo.png}}
}
\author{Author Name}
\date{Day Month Year}

\begin{document}
\maketitle

\chapter*{Abstract}
Abstract goes here

\chapter*{Dedication}
To mum and dad

\chapter*{Declaration}
I declare that..

\chapter*{Acknowledgements}
I want to thank...

\tableofcontents

\chapter{Introduction}
Lorem ipsum...

\chapter{Literature Review}
Lorem ipsum...

\chapter{Methodology}
Lorem ipsum...

\chapter{Discussion and Analysis}
Lorem ipsum...

\chapter{Conclusion}
Lorem ipsum...

\appendix
\chapter{Questionnaire}
Lorem ipsum...

\chapter{Regression Output}
Lorem ipsum...

\end{document}

我的代码将产生类似这样的结果。

在此处输入图片描述

答案1

正如@js bibra 已经指出的那样,您可以非常轻松地定义您的标题页。

我建议你看看 KOMA-Script 课程。Markus Kohm 编写了scrreprtscrbook作为标准 LaTeXreportbook课程的替代品。我建议这样做,因为 KOMA 课程有非常强大的命令,可以创建标题页,包括前标题、献词等等。看看英语手册,尤其是第3.7章。

一般来说,您可以选择使用由命令生成的预定义布局,\maketitle或者您可以通过设计自己的标题页环境begin{titlepage} ... \end{titlepage}

你的论文可能会这样开始

\documentclass{scrbook}

\usepackage[T1]{fontenc}
\usepackage{graphicx}

%% Definitions for the titles
%\titlehead{Not in use}
%\subject{Also not in use}
\title{Codimension-Two\\
  Free Boundary Problems}
\subtitle{School of Atlantis}
\author{
  \includegraphics[scale=0.3]{example-image-a}\\
  {\huge\bfseries Keith Gillow}\\
  St Catherine College\\
  University of Oxford}
\date{}
\publishers{A thesis submitted for the degree of\par 
  \textsc{Doctor of Philosphy}\\
  Trinity 1998\\[3ex]
  \today}

\begin{document}
\maketitle
\end{document}

导致KOMA-Script 示例标题页

答案2

这符合要求吗?

如果符合要求,请在答案左边打勾——如果还有其他要求,请在评论中提出。

在此处输入图片描述

\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}


\begin{document}
\pagestyle{empty}
\begin{center}
    \LARGE
    {\bfseries Codimension-Two\\Free Boundary Problems\par}
    School of Atlantis\par
    \vspace{4cm}
    \includegraphics[scale=0.3]{example-image-a}\\
    {\huge\bfseries Keith Gillow\par}
    {\small St Catherine College\\University of Oxford}
    \vspace{3cm}
    \par
\begin{minipage}{.5\linewidth}
        \normalsize\centering
        A thesis submitted for the degree of\par
        \textsc{Doctor of Philosphy}\par
        Trinity 1998
    \end{minipage}
    \vfill
    \today
\end{center}
    \newpage
\chapter*{Abstract}
Abstract goes here

\chapter*{Dedication}
To mum and dad

\chapter*{Declaration}
I declare that..

\chapter*{Acknowledgements}
I want to thank...

\tableofcontents

\chapter{Introduction}
Lorem ipsum...

\chapter{Literature Review}
Lorem ipsum...

\chapter{Methodology}
Lorem ipsum...

\chapter{Discussion and Analysis}
Lorem ipsum...

\chapter{Conclusion}
Lorem ipsum...

\appendix
\chapter{Questionnaire}
Lorem ipsum...

\chapter{Regression Output}
Lorem ipsum...

\end{document}

相关内容