这里没有结束 \maketitle 的行

这里没有结束 \maketitle 的行

在此处输入图片描述 因此,我得到了这个模板来工作。一切都完成了,但后来我注意到我的致谢在论文标题页之前。我尝试执行它,但我一直得到这里没有结束 \maketitle 的行。有人可以帮忙吗?我不知道该怎么办。谢谢。

% Thesis master document
\documentclass[final,12pt,a4paper,oneside]{book}
\setcounter{secnumdepth}{3}
\textheight =24.2 cm 
\textwidth =15 cm 
\topmargin =-15mm

\usepackage[round]{natbib}
\usepackage{amssymb}
\usepackage{graphics}
\usepackage{graphicx}
\usepackage{epsfig}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{bm}
\usepackage{layout}
\usepackage {mathrsfs}
\usepackage{listings}
\usepackage{float}

\def\hang{\hangindent\parindent}
\def\rf{\par\noindent\hang}

\newtheorem{defin}{Definition}
\newtheorem{theorem}{Theorem}
\newtheorem{result}{Result}


\begin{document}


    
    \baselineskip = 18pt
    
    \pagestyle{plain}
    
    \frontmatter
    
    \include{Title}
    \maketitle
    
    \tableofcontents
    \listoftables
    %\listoffigures
    %\include{Introduction}
    
    \mainmatter
    
    \include{Chapter1}
    \include{Chapter2}
    \include{Chapter3}
    \include{Chapter4}
    %\include{Conclusion}
    %\include{Appendix}
    
    \backmatter
    
    \include{Bibliography}
    
\end{document}

答案1

我建议使用以下主文件:

% Thesis master document
\documentclass[final,12pt,a4paper,oneside]{book}
\setcounter{secnumdepth}{3}
\textheight =24.2 cm 
\textwidth =15 cm 
\topmargin =-15mm

\usepackage[round]{natbib}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{bm}
\usepackage{layout}
\usepackage{mathrsfs}
\usepackage{listings}
\usepackage{float}

\def\hang{\hangindent\parindent}
\def\rf{\par\noindent\hang}

\newtheorem{defin}{Definition}
\newtheorem{theorem}{Theorem}
\newtheorem{result}{Result}


\begin{document}
    \baselineskip = 18pt
    
    \pagestyle{plain}
    
    \frontmatter
    
    \begin{titlepage}
      \centering
      \null
      \vfill
      \vfill
      {%
        \Huge\bfseries
        The Performance of Preliminary Model Selection Using AIC or BIC\par
      }%
      \vfill
      {%
        \LARGE
        Juliet Nwabuzor\par
      }%
      \vfill
      Supervised by Assoc.\@ Prof.\@ Paul Kabaila
      \vfill
      Department of Mathematical and Physical Sciences\\
      La Trobe University\\
      Victoria 3086, Australia\par
      \vspace{\baselineskip}
      October 2022
      \vfill
      \copyright Submitted in fulfilment of the thesis requirement of\\
      STA5THA and STA5THB, School of Computing, Engineering and\\
      Mathematical Sciences, La Trobe University.
      \vfill
      \vfill
      \null
    \end{titlepage}

    \chapter*{Acknowledgements}
    Praise and Glory
    
    \tableofcontents
    \listoftables
    %\listoffigures
    %\include{Introduction}
    
    \mainmatter
    
    %\include{Chapter1}
    %\include{Chapter2}
    %\include{Chapter3}
    %\include{Chapter4}
    %\include{Conclusion}
    %\include{Appendix}
    
    \backmatter
    
    %\include{Bibliography}
    
\end{document}

其结果为以下标题页:

在此处输入图片描述

以及致谢:

在此处输入图片描述

相关内容