论文中不可删除的附录章节

论文中不可删除的附录章节

这里包含论文模板。在 style_sheets 中有一个 template.tex 文件。模板通过编辑该文件并进行编译来工作。当一个人这样做时,pdf 末尾会有一个附录 A 和附录 B。我曾用这个写过我的论文,但仍然无法删除附录 A 和 B。删除 template.tex 中的附录代码会导致文件无法编译。

我怎样才能删除附录章节?

答案1

如果您不需要/不想要附录,只需删除从(包括)\chapter*{Appendices}到结尾的所有内容。这包括整个\addcontentsline{toc}{chapter}{Appendices}\appendix和两个示例\chapter

这是一个简化的模板,可以编译:

\documentclass[botnum, fleqn]{unmeethesis}
\begin{document}

\frontmatter

\title{An Awesome Thesis That Will Prove \\ to the Universe
       That I Really Deserve This Honorable Degree}

\author{Albert Richard Einstein, III}
\degreesubject{M.S., Mathematics}
\degree{Master of Science \\ Mathematics}
\documenttype{Thesis}

\previousdegrees{A.A.S., University of Southern Swampland, 1988 \\
                 M.S., Art Therapy, University of New Mexico, 1991}

\date{December, \thisyear}
\maketitle

\begin{dedication}
   To my parents.
\end{dedication}

\begin{acknowledgments}
   \vspace{1.1in}
   I would like to thank my advisor, Professor Martin Sheen.
\end{acknowledgments}

\maketitleabstract

\begin{abstract}
   The theory of relativity is a real ``toughie'' to prove.
\clearpage 
\end{abstract}

\tableofcontents
\listoffigures
\listoftables

\begin{glossary}{Longest  string}
   \item[$a_{lm}$]
      Taylor series coefficients, where $l,m = \{0..2\}$
   \item[$A_{\bf{p}}$]
      Complex-valued scalar denoting the amplitude and phase.
   \item[$A^T$]
      Transpose of some relativity matrix.
\end{glossary}

\mainmatter

\chapter{Introduction}

\section{\label{section:overview}Overview}
   The classic approach to proving a theorem is some really difficult 
   mathematics.  
\section{Conclusions}
   I conclude that this is a really short thesis.

\chapter{Future Work}
   I'm sure my future work will consist of lots of other famous stuff.

\end{document}

话虽如此,但请在未来让人们能够更轻松地帮助您:下载自定义类和模板(至少是压缩格式)并不是大多数人会经常做的事情。这就是为什么您总是被要求在此 SX 上提供 MWE。

相关内容