hier mein Minimalbeispiel:
\documentclass[ 12pt, % Schriftgröße %DIV10, Einstellungen/Sprachen/ngerman, % für Umlaute, Silbentrennung etc. a4paper, % Papierform oneside, % einseitiges Dokument titlepage, % es wird eine guteseite verwendet parskip=half, % Abstand zwischen Absätzen (halbe Zeile) headings=normal, % Größe der Überschriften verkleinern listof=totoc, % Verzeichnisse im Inhaltsverzeichnis aufführen bibliography=totoc, % Literaturverzeichnis im Inhaltsverzeichnis aufführen index=totoc, % Index im Inhaltsverzeichnis aufführen %captions=tableheading, % Beschriftung von Tabellen unterhalb ausgeben tablecaptionabove, final % Status des Dokuments (final/draft) ]{scrartcl} \usepackage[backend=biber, %% Hilfsprogramm "biber" (statt "biblatex" oder "bibtex") style=apa, %% Zitierstil (siehe Dokumentation) natbib=true, %% Bereitstellen von natbib-kompatiblen Zitierkommandos hyperref=true, %% hyperref-Paket verwenden, um Links zu erstellen firstinits=true, ]{biblatex} \DeclareLanguageMapping{ngerman}{ngerman-apa} \renewcommand*{\finalnamedelim}{\space\&\space} \nocite{*} \addbibresource{Bibliography/Bibliography.bib} %% Einbinden der bib-Datei \begin{document} 1. citet{Jovanovic2015} 2. citet*{Jovanovic2015} 3. citet*{Jovanovic2015} 4. citep{Jovanovic2015} \printbibliography \end{document}
Bibliographie-Datei:
@article{Jovanovic2015, author = {Jovanovic, Aleksander and Jankovic, Anita and Jovanovic, Snezana Markovic and Peric, Vladan and Biljana, Vitosevic and Pavlovic, Milos}, journal = {International Journal of Education and Development using Information and Communication Technology}, pages = {138--152}, title = {{When going hybrid is not enough: Statistical analysis of effectiveness of blended courses piloted within Tempus BLATT Project}}, volume = {11}, year = {2015} }
Wie bekomme ich es hin, dass bei mehr als zwei Autoren, aber weniger als sechs Autoren alle Autoren beim ersten mal zitieren angeführt werden, beim zweiten mal zitieren soll nur der erste Autor mit et al. angeführt werden.
Ich benötige manche Zitationen mit einen AND zwischen den Autoren, leider wird bei allen das & verwendet. Kann ich das beeinflussen?
Vielen Dank.[/b]