模板,如何定位文本

模板,如何定位文本

嘿夥計們,我正在嘗試使用乳膠寫論文。在一個資料夾中,我有從模板獲得的主文件以及章節文件。當我打印時,論文在封面上輸出“這篇論文是研究生學習”,我希望它說“本科生”。但是,包含姓名、學校、日期、eyc(包括該文字)的主文件不會在任何地方顯示該文字。我在哪裡可以找到它?
主文件代碼:

\documentclass[12pt]{MUNThesis}
\usepackage{caption}
\usepackage{listings}
\usepackage[sectionbib]{chapterbib}
\captionsetup[figure]{font=small}
\usepackage{lipsum}
\usepackage{mwe}

%\newcommand{\cm}{cm$^{-1}$}
%\newcommand{\dgC}{$^\circ$C}
%\newcommand{\dg}{$^\circ$}

%THIS IS WHERE YOU ENTER THE TITLE OF YOUR THESIS
\title{Albedo Parametrization for Models of Intermediate Complexity}

%THIS IS WHERE YOU ENTER YOUR NAME
\author{Name}

%THIS IS WHERE YOU ENTER THE NAME OF YOUR DEGREE
\deg{Degree}

%THIS IS WHERE YOU ENTER THE NAME OF YOUR DEPARTMENT, SCHOOL, or FACULTY
\fac{Department}

%THIS IS WHERE YOU ENTER THE DATE YOU SUBMITTED YOUR THESIS OR DISSERTATION
\date{August 2020}

%THIS IS WHERE YOU ENTER THE YEAR OF GRADUATION 
\copyrightyear{2020}

\begin{document}
\muntitlepage

%set the hierarchical drilldown to 3
%\setcounter{secnumdepth}{3} \setcounter{tocdepth}{3}

%set pagination to Roman numerals and begin at page i
\pagenumbering{roman} \setcounter{page}{1}

%%-------------Abstract-----------------
\doublespacing
\setlength{\topmargin}{-.5in}
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
%include the abstract.tex file
\input{abstract}

%%-----------Acknowledgements---------------
\chapter*{Acknowledgements}
\addcontentsline{toc}{chapter}{Acknowledgments} 
%include the acknowledgments.tex file
\input{acknowledgements}

%%-----------Table of Contents------------------
\renewcommand{\contentsname}{Table of Contents}
\tableofcontents{}

%%------------List of Figures----------------------
\listoffigures{}
\addcontentsline{toc}{chapter}{List of Figures}

\chapter*{List of Abbreviations and Symbols}
\addcontentsline{toc}{chapter}{List of Abbreviations and Symbols}
%\listofAbbreviationsandSymbols{}
\input{abbreviations}

%change single space to double space
\doublespacing
%maintain Roman numerals on the previous page
\clearpage
%set pagination to Arabic
\pagenumbering{arabic} 
%\renewcommand{\thepage}{\arabic{page}}

\include{Introduction}
\include{literaturereview}
\include{Parametrization}
\include{Results}
\include{conclusions}
\include {references}
\appendix
\include{ApendixA}

\end{document}

在名稱之後,文件列印:

提交給研究生院的論文部分>滿足學位要求

我希望這是可以改變的。

相關內容