
Я пытаюсь написать диссертацию с нуля. Как мне разработать титульный лист, подобный этому?
Это мой исходник 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. Маркус Ком написал scrreprt
и scrbook
как замену стандартным классам LaTeX report
и 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}