书目文件内容问题

书目文件内容问题

我正在做一个小组项目,用 latex 写这篇文章。由于需要来回发送文件,因此使用单个文件会更容易。因此,我们想将参考书目直接包含在文件中。唉,这证明存在一些问题。首先,引用没有正确显示,我们需要它们采用“(作者,年份)”的形式,其次,参考书目没有显示?我们尝试先使用 texmaker 中的 quickbuild 编译它,然后运行 ​​bibtex,然后再次运行 quickbuild,但没有任何帮助

如果有人能看一下这个文件,我们将非常感激

\documentclass[a4paper,12pt,round]{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Book{test1,
  author    = {Goossens, Michel and Mittelbach,
               Frank and Samarin, Alexander},
  title     = {The LaTeX Companion},
  publisher = {Addison-Wesley},
  location  = {Reading, Mass.},
  year      = {1994},
}
\end{filecontents}
\usepackage[T1]{fontenc}                             % Vise norske tegn.
\usepackage[norsk]{babel}                            % Tilpasning til norsk.
\usepackage[utf8]{inputenc}                          % For å kunne skrive norske tegn.
\usepackage{lipsum}
\usepackage[style=authortitle-dw]{biblatex}
\addbibresource{\jobname.bib}
\usepackage{hyperref}
\author{Øistein Søvik, Silje, Magnus , Maja}
\title{PPU4000 \\ Examen Paedagogicum}

\begin{document}
\maketitle 

\tableofcontents

\lipsum[1] \Cite{test1} \lipsum[2]

\printbibliography
\end{document}

答案1

使用以下方法编译 MWElatexmk对我来说很好用。(Latexmk 会自动确定所需的编译数量和类型。)请注意,的最新版本biblatex使用 Biber 作为默认后端,而不是 BibTeX。我对 并没有太多经验biblatex,但 latexmk 确实让你的生活更轻松。

至于引用格式,请使用以下格式:

\usepackage[style=authoryear]{biblatex}

并得到括号:

\parencite{test1}

您可能会对以下问题感兴趣:biblatex 简介(适合初学者)我的答案) 和bibtex 与 biber 以及 biblatex 与 natbib 的比较

相关内容