不希望附录作为章节出现

不希望附录作为章节出现

我的论文大纲如下,但当我编写时,附录显示为一章。我不想将其作为一章,只要附录就行。我的论文大纲有什么问题吗?

\documentclass[12pt,a4paper,twoside]{report}
\setlength{\textwidth}{16cm}
\setlength{\oddsidemargin}{0pt}
\setlength{\evensidemargin}{0pt}
\setlength{\parskip}{3mm}
\setlength{\parindent}{0mm}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{{images/}}
\usepackage{setspace}
\usepackage{epsfig}
\usepackage{filecontents}
\usepackage{thmtools}
\usepackage{enumerate}% http://ctan.org/pkg/enumerate
\usepackage{enumitem}
\usepackage{thm-restate}
\usepackage{cleveref}
\usepackage{amsmath}

\begin{document}
\begin{abstract}
\doublespacing
A Heron triangle is a triangle that …
\end{abstract}

\tableofcontents
\listoffigures
\listoftables
\newpage

\pagenumbering{arabic}
\onehalfspacing
\chapter{Introduction}
\input{chapters/Introduction}

\onehalfspacing
\chapter{Background and Methodology}
\input{chapters/chapter2}

\onehalfspacing
\chapter{Values of $\delta(\mu)$}
\input{chapters/chapter3}

\onehalfspacing
\chapter{Existence of a Suitable Pair}
\input{chapters/chapter4}

\onehalfspacing
\chapter{Title}
\input{chapters/chapter5}

\onehalfspacing
\phantomsection
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{plain}
\bibliography{reference}

\singlespacing
\setcounter{tocdepth}{2}
\chapter{Appendix}
\input{chapters/Appendix}

\end{document}

另外,我有一组非常长的 \usepackage{},有没有办法可以将所有这些包放在不同的 Tex 文件中,然后在我的论文大纲中重新调用它。我试过这样做,但我猜是出了什么问题,它不想编译。

答案1

典型的\chapter表示形式包括标题和章节标题。因此,发布

\appendix
\chapter{Appendix}

可能看起来很尴尬,因为重复附录似乎是多余的:

在此处输入图片描述

相反,考虑仅使用

\chapter*{Appendix}

在此处输入图片描述

请注意,这意味着以下内容:

  1. 附录章节不会出现在目录中(这是默认设置)。如果您希望将其包含在内,请按照其他chapter格式进行格式化,然后添加

    \addcontentsline{toc}{chapter}{Appendix}
    %\addcontentsline{toc}{chapter}{\numberline{}Appendix}
    

    之后\chapter*{Appendix}。第一个选项打印附录条目与左边距齐平。第二个选项(上面已注释)插入适当数量的水平空间以与其他编号目录中的章节。

  2. 不会使用分段,因为它们的枚举会有缺陷,因为它们仍然包含\thechapter。此外,您可能还必须执行

    \renewcommand{\thesection}{\arabic{section}}
    

    \thechapter.从编号中去掉默认前缀。

相关内容