Got the following
Document:
\documentclass[a4wide,11pt]{report}
\usepackage[dutch,english]{babel}
\usepackage{blindtext}
\usepackage{biblatex}
\usepackage{hyperref}
\bibliography{Bibliografie_AG.bib}
\begin{document}
Something blablabla \citep{MendeleySearch}
\printbibliography
\end{document}
Bibliografie_AG.bib (e.g.):
@online{MendeleySearch,
author = {John Doe},
month = {5},
title = {Mendeley | Search},
url = {http://www.mendeley.com/research-papers/},
year = {2012},
}
I'm using biblatex to reference URLs. But now I cannot use /citep or something listed here.
Is there any way to make this happen?


\citepis provided by thenatbibpackage. Do you maybe want to load thebiblatexpackage with thenatbib=trueoption to make it emulate the\citepcommand? – Mico May 10 '12 at 10:02\usepackage[natbib]{biblatex}is now 'not giving errors' but, \citep{} doesn't give me the output between(Author, Year)as stated. – Albert May 10 '12 at 10:09(Author, Year)". Are you looking to get a comma inserted between the author and year components? If so, be sure to set the instruction\nameyeardelim{, }somewhere in the preamble. (The default is a simple interword space.) – Mico May 10 '12 at 10:22\citep{author93}should give this(Author, 1993)– Albert May 10 '12 at 10:25\renewcommand\nameyeardelim{, }in the preamble of your document? – Mico May 10 '12 at 10:31