I'm having a problem concerning the referencing with bibtex. using the bibliographystyle i get the desired output if there is one author Name (year) or three or more authors Name et al. (year)
but for two authors i have the problem, that here is a & between the two authors instead of a simple "and". could someone tell me how to change this?
i've been looking for a solution for hours now...
greetings
Code: Select all
\documentclass[12pt,oneside,a4paper,english]{article}
%packages
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage{framed}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage[english]{fancyref}
\usepackage{fancyhdr}
\usepackage{enumerate}
\usepackage{amsmath}
\usepackage{geometry}
\usepackage{hyperref}
\usepackage{cite}
\usepackage{natbib}
\begin{document}
\pagestyle{fancy}
\subsection{Model}
Hier wird später ein Text verfasst gemäss \cite{JT:05}. Wir warten noch auf eine definitive Antwort \cite{Dia:83}, welche wir aus blabla \cite{Bry:80}.
\bibliographystyle{authordate1}
\bibliography{myBib.bib}
\end{document}