如何设置 Bibtex

如何设置 Bibtex

经过 4 小时的搜索和尝试,我需要具体的帮助。我写了一份报告,并想附上参考书目。但我仍然收到以下错误消息:

  1. 空书目
  2. 存在未定义的引用
  3. 请对文件(biblatex)“文件名”(biblatex)重新运行 BibTeX,然后重新运行 LaTeX。
  4. 第 3 页上的引文‘示例引文’未定义*

我的代码如下:

    \documentclass[12pt, twoside]{report}
%Standard Packages
\usepackage[utf8]{inputenc}
\usepackage{caption}
\usepackage{graphicx}
\usepackage[english]{babel}
\usepackage{fancyhdr}
\usepackage{lmodern}
\usepackage{amsmath}
\usepackage{emptypage}
%\usepackage[round, authoryear]{natbib}
%\usepackage[nottoc]{tocbibind}
\usepackage{makeidx}
\usepackage{csquotes}
\usepackage{booktabs}
\usepackage{adjustbox}
\usepackage{comment}
\usepackage{color}
\graphicspath{{Pictures/}}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}

% zusätzliche Schriftzeichen der American Mathematical Society
\usepackage{amsfonts}
\usepackage{amsmath}

%Library
\usepackage[backend=bibtex,bibencoding=ascii,style=authoryear,sorting=none]{biblatex}
\addbibresource{bibfile.bib}

\begin{document}

%\bibliography{bibfile.bib}

\newpage
\thispagestyle{empty}
\include{01_abstract}

\setcounter{page}{1}
\pagenumbering{roman}
\include{02_dedication}

\include{03_declaration}

\include{04_acknowledges}
\newpage

\tableofcontents{}

\listoffigures{}
\listoftables{}
\newpage

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

\Include{Chapter1}


\printbibliography

\end{document}

我还有我的 bibfile 的一部分:

@book{Fluid Mechanics Seventh Edition,
    author    = {Frank M. White},
    title     = {Fluid Mechanics, Seventh Edition},
    year      = {2011,
    publisher = {McGraw-Hill}
}

当我使用 Quick Build 归档文档时:执行 latex + Bibtex + 2x Latex + Viewpdf。我必须做什么才能打印参考书目?非常感谢您的帮助!

答案1

.bib 键不得包含空格,并且 .bib 文件中年份的左括号后面没有右括号。使用此文件

@book{Fluid_Mechanics_Seventh_Edition,
   author    = {Frank M. White},
   title     = {Fluid Mechanics, Seventh Edition},
   year      = {2011},
   publisher = {McGraw-Hill}

}

和一个

\cite{Fluid_Mechanics_Seventh_Edition}

在您的 LaTeX 源中,我的盒子上一切都运行正常。

相关内容