論文の表紙を作成する

論文の表紙を作成する

論文を一から書き直そうとしています。このような表紙を作成するにはどうすればよいでしょうか?

ここに画像の説明を入力してください

これは私の 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標準の 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}

その結果KOMA スクリプトの例のタイトルページ

答え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}

関連情報