如何在论文首页添加导师姓名和学校徽标?

如何在论文首页添加导师姓名和学校徽标?

我已经写完了博士论文。但我对论文的封面感到困惑\documentclass[..]{style},尤其是论文的首页。我尝试使用以下模板:

\documentclass[oneside]{scrbook}
%\documentclass[12pt]{amsbook}
\title{Thesis Title}
\author{submitted by \\ Author Name}
\date{date}
\titlehead{A Thesis submitted for the degree of Doctor of Philosophy}
\publishers{School of Something\\University of Somewhere}

\begin{document}
\maketitle
\frontmatter


\chapter{Acknowledgements}
I would like to thank my supervisor, Professor Someone. This
research was funded by the some Research Council.
\chapter{Abstract}
A brief summary of the project goes here.
% A glossary and list of acronyms may go here
% or may go in the back matter.
\tableofcontents
\mainmatter
\chapter{Introduction}
\label{ch:intro}

\backmatter
% A glossary and list of acronyms may go here
% or may go in the front matter after the abstract.
% The bibliography will go here
\begin{thebibliography}{10}

\end{thebibliography}
\end{document}

如果你运行它,首页看起来是这样的:

在此处输入图片描述

如何在作者姓名正下方添加导师姓名?如何在大学名称正上方添加大学徽标?

要包含大学徽标,我们需要使用\usepackage{graphicx},但我不确定如何将其合并。

相关内容