I want my citations to be shown as (LastName, year) instead of (LastName Initials, year). I am using the natbib package, with setting 'authoryear'.
Below a minimilistic example:
My .tex file:
\documentclass[]{article}
\usepackage[authoryear]{natbib}
\begin{document}
Document body text with citations \\
\citep{Bertram91} \\
\citep{Bertram06} \\
\bibliographystyle{authordate1}
\bibliography{myreferences}
\end{document}
And my .bib file:
@article{Bertram91,
author = "Bertram C.D., Raymond C.J.",
title = "Measurements of wave speed...",
journal = "Med. and Biol. Eng. and Comput.",
volume = "29",
year = "1991",
pages = "493--500",
}
@article{Bertram06,
author = "Bertram C.D., Tscherry J.",
title = "The onset of flow-rate...",
journal = "Journal of Fluids and Structures",
volume = "22",
year = "2006",
pages = "1029--1045",
}
This gives the output:

I do NOT want the initials in the citation.
Last, First and Last, First, so you needauthor = "Bertram, C. D. and Raymond, C. J."andauthor = "Bertram, C. D. and Tscherry, J."(orauthor = " C. D. Bertram and C. J. Raymond"andauthor = "C. D. Bertram and J. Tscherry"). – moewe Dec 23 '13 at 14:03