I am working on a group project, and writing this in latex. Because of sending files forth and back this is easier with a single file. Therefore we want to include the bibliography directly into the file. Alas this proves some problems. For one the citatitions does not show up properly, we need them to be of the form "(author,year)" and secondly the bibliography does not show up? We tried compiling it first using the quickbuild in texmaker, then run bibtex, then run quickbuild again but nothing helped
If someone would look at the file we would be extremely grateful
\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}
biblatexis nowbiber. You probably want to use thebackend=bibtexoption when loadingbiblatex. – Joseph Wright Nov 05 '12 at 07:12