参考书目作为最后一个附录的一部分出现

参考书目作为最后一个附录的一部分出现

我正在写论文,发现参考书目出现在最后的附录中。我使用的是natbibA&A 风格。这是我使用的代码。我附上了整个代码:

\documentclass[a4paper,12pt,english]{book}

\usepackage{fancyhdr}

\usepackage{multicol}

\usepackage{graphicx}

\usepackage{amsmath}

\usepackage{amsfonts}

\usepackage{amssymb}

\usepackage{lscape}

\usepackage{graphics}

\usepackage{natbib}

\usepackage{epsfig}

\usepackage{booktabs}

\usepackage{multirow}

\usepackage{multicol}

\usepackage{ctable}

\usepackage{rotating}

\usepackage{epigraph}

\usepackage{appendix}

\usepackage{ctable}

\usepackage{color}

\usepackage{fix-cm} 

\usepackage{setspace} 

\usepackage{morefloats}

\usepackage{hyperref}

\usepackage{pageno}

\usepackage{fixltx2e}

\usepackage{textcomp}

\usepackage{amssymb}

\usepackage{psfrag,color}

\usepackage{txfonts}

\usepackage{caption}

\renewcommand{\captionfont}{\small} 

\renewcommand{\captionlabelfont}{\sffamily\bf}

\usepackage{subfig}

\setlength{\textwidth}{17cm}

\setlength{\textheight}{25cm}

\setlength{\headwidth}{17cm}

\setlength{\evensidemargin}{-1.0cm}

\setlength{\oddsidemargin}{-1.0cm}

\addtolength{\topmargin}{-1.0cm}

\setlength{\voffset}{-1.65cm}

\setlength{\hoffset}{0cm}

\onehalfspacing

\pagestyle{fancy}

\fancyhf{}

\fancyhead[LO]{\leftmark}

\fancyhead[RE]{\rightmark}

\fancyhead[RO,LE]{\thepage} 

\renewcommand{\chaptermark}[1]{\markboth{\textbf{\thechapter. #1}}{}}

\renewcommand{\sectionmark}[1]{\markright{\textbf{\thesection. #1}}}

\renewcommand{\headrulewidth}{0.6pt}

\setlength{\headheight}{2\headheight}

\renewcommand{\textfraction}{0.00}

\renewcommand{\topfraction}{0.0}

\renewcommand{\bottomfraction}{0.0}

\renewcommand{\floatpagefraction}{0.0}

\setcounter{totalnumber}{6} 

\newcommand{\Rsolar}{\mbox{$\rm R_{\odot}\:$}}

\newcommand{\Rsol}{\mbox{$\rm R_{\odot}$}}

\newcommand{\VR}{$V\hskip-0.0275cmR$}

\newcommand{\Rsolit}{$\rm \textit{R}_{\odot}\:$}

\newcommand{\Msol}{\mbox{\,$\rm M_{\odot}$}}

\newcommand{\Nestel}{\mbox{\,$\rm N_{\star}\:$}}        

\newcommand{\Testel}{\mbox{\,$\rm T_{\star}\:$}}        

\newcommand{\Restel}{\mbox{\,$\rm r_{\star}\:$}}        

\newcommand{\Bestel}{\mbox{\,$\rm B_{r_{\star}}\:$}}    

\newcommand{\ba}{\begin{eqnarray}}

\newcommand{\ea}{\end{eqnarray}}

\newcommand{\be}{\begin{equation}}

\newcommand{\ee}{\end{equation}}

\begin{document}

\frontmatter

\pagenumbering{roman}

\fancyhead[RE]{My thesis.}

\tableofcontents

\mainmatter

\pagenumbering{arabic}  

     \chapter{Chapter1}\label{Chapter1}

ble ble ble \citep{Andrews}


\appendix

    \chapter{Appendix1}\label{Appendix1}

bla bla bla


  {

  \backmatter

   \cleardoublepage 

  \addcontentsline{toc}{chapter}{Bibliography}

  \newpage

   \bibliographystyle{aa}

   \bibliography{aamnem99,tesi-bib}

 \begin{description}

 \bibitem[Andrews(2222)]{Andrews} Andrews, H.C. (Prentice-Hall, Inc., EnglewoodCliffs, New York).

 \end{description}

  }


\end{document}

如果我用...替换括号中的最后一部分

        {
    \cleardoublepage

    \renewcommand{\chaptermark}[1]{\markboth {#1}{#1}}

    \renewcommand{\sectionmark}[1]{\markright{#1}}

    \lhead[\fancyplain{}{\bf\thepage}]{\fancyplain{}{}}

    \rhead[\fancyplain{}{\bf {\bf Bibliography}}]{\fancyplain{}{\bf\thepage}}

    \chead{}

    \addcontentsline{toc}{chapter}{Bibliography}

    \bibliographystyle{aa}

    \bibliography{aamnem99,aabib}



\begin{description}

 \bibitem[Andrews(2222)]{Andrews} Andrews, H.C. (Prentice-Hall, Inc., Englewood Cliffs, New York).

 \end{description}

        }

...然后我将参考书目与附录分开,但我没有得到标题为“参考书目”的页面。

对此有什么帮助吗?

相关内容