附录页面偏离中心

附录页面偏离中心

我目前正在编写一份附录中包含大量图片的文档,但遇到了一个小问题。当我开始编写第一个附录部分以包含图片时,第一页不知为何呈现在中心。参见下图:

附录

另外,请注意页码如何跳过这个偏离中心的页面。这是我的附录的代码:

    \appendix
    \setcounter{chapter}{0}
    \renewcommand{\chaptername}{Appendix}
    \renewcommand{\theequation}
    {\Alph{chapter}.\arabic{section}.\arabic{equation}}
    \addcontentsline{toc}{chapter}{\numberline{}Appendix}
    \setcounter{equation}{0}

    %%% Appendix A goes here %%%%

    \chapter{Fit Images}

    %%% Large amount of text here %%%

    \section{Single Gaussian Fits}

    The following are the single Gaussian fits collected for this study, all, performed regardless of any asymmetries.

    \graphicspath{{SG/}}

    \begin{figure}[h]
    \centering
    \includegraphics[width=\linewidth, height=6cm]{singlegaussianfit_1.eps}
    \caption{Object 1}
    \end{figure}

    %%% And so on with my figures %%%

我对该文件的序言如下:

    \documentclass{dmathesis}
    \date{}
    \usepackage{showlabel}
    \usepackage{longtable,lscape}
    \usepackage{array}
    \usepackage{wasysym}
    \usepackage[section]{placeins}
    \usepackage[maxfloats=110]{morefloats}
    \makeatletter\@openrightfalse\makeatother
    \usepackage{float}
    \newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}

    \input{format}

    \includeonly{chapter1,chapter2,chapter3%
             ,chapter4,chapter5,chapter6,ref,append}


    \begin{document}


    \input{frontpage}

    \pagenumbering{arabic}
    \setcounter{page}{1}

    \eqlabon
    \eqlaboff

    \include{chapter1}
    \include{chapter2}
    \include{chapter3}
    \include{chapter4}
    \include{ref}
    \include{append}
    \end{document}

我将非常感激并希望得到有关如何解决此问题的建议。提前致谢!

相关内容