在 biblatex 中的作者之间添加“和”

在 biblatex 中的作者之间添加“和”

我看到几个问题询问如何消除作者之间的“和”,但我的问题是如何添加它?经过一番努力,我终于获得了引用(作者,年份),但这导致作者之间的“和”丢失(挪威语中“和”是“og”)如何修复?=)

\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}

相关内容