更改经典论文的封面

更改经典论文的封面

我正在使用经典论文模板,我想在封面页的左端包含我的导师姓名,但似乎没有什么效果。我希望有人能帮忙,对于我的序言,我使用以下内容:

      % book example for classicthesis.sty
      \documentclass[
      % Replace twoside with oneside if you are printing your thesis on a single side
      % of the paper, or for viewing on screen.
      %oneside,
      oneside,
      11pt, a4paper,
      footinclude=true,
      headinclude=true,
       cleardoublepage=empty
       ]{scrbook}


        \setlength{\parindent}{4em}

        %\usepackage{scrlfile}
         \PreventPackageFromLoading{mathpazo}
         %\usepackage[pdfspacing,eulerchapternumbers]{classicthesis}
        \usepackage{float}
         \usepackage{lipsum}
        \usepackage[linedheaders,parts,pdfspacing]{classicthesis}
        \usepackage{amsmath}


                 \title{Design of Support Tools} 
                \author{by\\
                 name} 
                \date{2014} 
               \titlehead{A Thesis submitted for the degree}

               \setlength{\parindent}{4em} 
              \begin{document} 
             \maketitle 
              \frontmatter
             \tableofcontents
              \listoffigures 


              \chapter{Acknowledgements} 
              I would like to thank my supervisor, Professor Someone. This 
             research was funded by the Imaginary Research Council. 
             \chapter{Abstract} 
              A brief summary of the project goes here. 
              \chapter{Abbreviations}
               \mainmatter 

              \backmatter  
            \begin{thebibliography}{100} % 100 is a random guess of the total number of 

            \end{thebibliography}
            \end{document}  

答案1

对于我的论文,我在一个名为“title.tex”的单独文件中构建了自己的标题页,因为这样比使用标准标题页灵活得多。

下面是一个我如何设计包括您的标题的标题页的简单示例:

\begin{titlepage}

\begin{center}
\textsc{\LARGE A Thesis submitted for the degree}\\[1,5cm]

\begingroup \linespread{1,75} \selectfont 
\textsc{\LARGE Design of Support Tools}\\[1,5cm]
\endgroup


by\\[0,5cm]
name\\[2,5cm]


\end{center}

Names of your supervisors

\vfill

\end{titlepage}

并在主文档中使用 \input{./title.tex} 包含标题页

例如:

\begin{document}
\selectlanguage{ngerman}
%titlepage
\input{./title.tex}

...
\end{document}

相关内容