参考书目不起作用;参考书目未出现在pdflatex和bibtex之后

参考书目不起作用;参考书目未出现在pdflatex和bibtex之后

我正在写论文,我以前用乳胶写论文,一切正常。但对于长篇论文,我的参考书目出现了问题。

我了解到我应该通过

pdflatex MainFile
bibtex MainFile
pdflatex MainFile
pdflatex MainFile

在第二步之前,我没有遇到任何问题或警告。第二步之后,我在 MainFile.bbl 中看到了这个

\begin{thebibliography}{1}

\bibitem{Wielen}
S.~T. Abedon, P.~Hyman, and C.~Thomas.
\newblock Experimental examination of bacteriophage latent-period evolution as
  a response to bacterial availability.
\newblock {\em Applied and Environmental Microbiology}, 69:7499--7506, 2003.

\end{thebibliography}

我在 MainFile.blg 中有这个

This is BibTeX, Version 0.99dThe top-level auxiliary file: Yan_Thesis.aux
A level-1 auxiliary file: Titlepage/Titlepage.aux
A level-1 auxiliary file: Contents/Introduction.aux
The style file: unsrt.bst
Database file #1: Contents/thesis_reference.bib

一切似乎都很好。但第三步却出错了

LaTeX Warning: Citation `Wielen' on page 1 undefined on input line 5.

[1] [2]) [3] [4] (D:\PHD_study\Yans_work\Thesis\Yan\Yan_Thesis.bbl

! Package graphics Error: Division by 0.

See the graphics package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              

l.1 \begin{thebibliography}{1}

? 

进程已终止...

有人知道这里出了什么问题吗?

以下是我的 MainFile.tex

\documentclass[10pt,b5paper,twoside,openright,english,fleqn,showtrims]{memoir/memoir}
\input{Definitions/Margindefinitions.tex}
\input{Definitions/Packageinputs.tex}
\input{Definitions/Pagedefinition.tex}
\input{Definitions/Colordefinition.tex}
\input{Definitions/Headerdefinition.tex}
\input{Definitions/Floatdefinitions.tex}
%\makeindex
\input{Definitions/Hyphens}

\begin{document}
     \frontmatter
     \setcounter{page}{1001}
    \pagestyle{empty}
    \include{Titlepage/Titlepage}
    \pagestyle{empty}
    \thispagestyle{empty}
    \pagestyle{empty}
    \cleardoublepage
    \pagestyle{ruled}
    \setcounter{page}{1}
       \setcounter{tocdepth}{2}%
        \maxsecnumdepth{subsubsection}

        \pagestyle{summarystyle}

        \cleardoublepage

        \cleardoublepage
        \pagestyle{ruled}
        \tableofcontents*%
        \cleardoublepage


    \mainmatter%
        \pagestyle{ruled} %dit bepaalt de headerstyle
      \include{Contents/Introduction}




    \appendix
        \pagestyle{poststyle}


    \backmatter%
        \pagestyle{ruled}
     \bibliographystyle{unsrt}%
       \pagestyle{bibstyle}
        \hyphenpenalty=0
        \bibliography{Contents/thesis_reference}
        \hyphenpenalty=15000
        \cleardoublepage

        \cleardoublepage
        \pagestyle{listofpubs}

 \end{document}

相关内容