I see several questions asking how to remove the and between authors, but my question is how can I add it? After much pain I was able to obtain the citing (author, year) but this resulted in loosing the "and" between authors (in norwegian "and" is "og") how can this be fixed? =)
\documentclass[a4paper,10pt]{article}
\usepackage{filecontents}
\begin{filecontents}{jobname.bib}
@Book{test1,
author = {Einar M. Skaalvik, Sidsel Skaalvik},
title = {Skolen som læringsarena: \emph{Selvoppfatning , motivasjon og læring}},
publisher = {Universitetsforlaget},
location = {Oslo},
year = {2002},
}
\end{filecontents}
\usepackage[T1]{fontenc} % Vise norske tegn.
\usepackage[norsk]{babel} % Tilpasning til norsk.
\usepackage[utf8]{inputenc} % For å kunne skrive norske tegn.
\usepackage{lipsum}
\def\andname{and}
\usepackage{csquotes}
\usepackage[citestyle=authoryear,backend=bibtex]{biblatex}
\renewcommand{\nameyeardelim}{, }
\addbibresource{jobname.bib}
\usepackage[colorlinks=true,citecolor=blue]{hyperref}
\author{Øistein Søvik, Silje, Magnus , Maja}
\title{PPU4000 \\ Examen Paedagogicum}
\begin{document}
\maketitle
\tableofcontents
\section{Innledning}
\section{Teori}
\section{Metode og beskrivelse}
\subsection*{Lærerens rolle i klasserommet}
Hello hello somewhat of a test \autocite{test1}
Do not mind me, plow plow plow your boat,
\section{Drøftning}
\section{Avslutning}
\printbibliography
\end{document}
andbetween names. (It has to beand: BibTeX expects this to be in English.) – Joseph Wright♦ Nov 5 '12 at 9:18author = {Author and Buthor and Cuthor and Duthor}isn't exactly intuitive. – doncherry Nov 5 '12 at 19:54