I am using biblatex with natbib and the the authoryear style.
Here is a minimal example of my setup:
Code: Select all
\documentclass[12pt,a4paper,titlepage,onecolumn]{article}
\usepackage[ngerman, english]{babel}
\usepackage[babel, german=quotes]{csquotes}
\usepackage[natbib=true, style=authoryear, sorting=nyt, maxcitenames=2, maxbibnames=999, hyperref=true, isbn=false, doi=false,backend=biber,dashed=false]{biblatex}
\addbibresource{MA-Lit.bib}
\begin{document}
\citep{Priller.2005}
\printbibliography
\end{document}
Code: Select all
@misc{Priller.2005,
author = {Priller, Eckhard and Sommerfeld, Jana},
year = {2005},
title = {Wer spendet in Deutschland? Eine sozialstrukturelle Analyse},
number = {SP I 2005-202},
series = {Discussion Papers},
editor = {{Wissenschaftszentrum Berlin f{\"u}r Sozialforschung}}
}
Thank you very much for your help!