
我正在嘗試從頭開始寫一篇論文。如何製作這樣的封面?
這是我的 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 編寫了scrreprt
和scrbook
作為標準 LaTeXreport
和book
類的替代品。我建議這樣做,因為 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}
答案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}