[Tex/LaTex] References in tufte-handout don’t appear

bibliographiestufte

I'm a newbie trying to write a tufte-handout including references. My file compiles fine; however, the references do not appear in the text or the margin (MWE):

\documentclass{tufte-handout}
\begin{document}
\cite{Holton2009}
\bibliographystyle{dcu}
\bibliography{Literatur}
\end{document}

What I've tried so far: looking at this (I wouldn't mind citations in the text instead of in the margins) How to remove sidenote citations in Tufte-LaTeX I replaced

\documentclass{tufte-handout}

with

\documentclass[nobib]{tufte-handout}

but I did not notice any difference between the two. Also, I tried this Citations using biblatex together with Tufte style are producing weird results but it gives me an error ('command \bibhang already defined' (?)). Lastly, after having read Tufte-book with standard natbib style author-year citations I used the [nobib] variance and added

\usepackage{natbib}

but again, that did not work.

Best Answer

The style dcu.bst does not play nicely with the bibliography settings of the tufte classes. If you use a different style, things work more smoothly.

Use, for example, \bibliographystyle{plain}.