i am a beginner with latex, so sorry for the long example.
My problem:
I want to quote the first time with all names, the second and more just with the first author and e.g. (in German u.a. is fine)
I got this thing to work. *proud*
Now I also need all of the authors in round brackets (like
\citet*
).But
Code: Select all
\parencite*{Huper.2007c}
\citep*[202]{Huper.2007c}
Can someone help me?
Code: Select all
\documentclass[12pt,a4paper]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[babel,german=quotes]{csquotes}
\usepackage{url}
\usepackage[babel,german=quotes]{csquotes}
\usepackage[ngerman]{babel}
\usepackage[style=authoryear,citestyle=authoryear,natbib=true,backend=biber, maxcitenames=1, maxbibnames=99]{biblatex}
%Namenssortierung Nachname Vorname
\DeclareNameAlias{sortname}{last-first}
%Doppelpunkt nach Jahreszahl
\renewcommand{\postnotedelim}{\addcolon\addspace}
%S. vor Seitenangabe entfernen
\DeclareFieldFormat{postnote}{#1}
\DeclareFieldFormat{multipostnote}{#1}
\renewbibmacro*{chapter+pages}{%
\printfield{chapter}%
\setunit{\bibpagespunct}%
\printfield{pages}%
\newunit}
%Slash zwischen Autoren
\newcommand*{\bibmultinamedelim}{\addslash\space}%
\newcommand*{\bibfinalnamedelim}{\addslash\space}%
\renewcommand*{\multinamedelim}{/}
\renewcommand*{\finalnamedelim}{/}
\AtBeginBibliography{%
\let\multinamedelim\bibmultinamedelim
\let\finalnamedelim\bibfinalnamedelim
}
\renewcommand*{\labelnamepunct}{\addcolon\space}
\addbibresource{referenzen2.bib} % benötigt referenzen.bib
\nocite{*}
\begin{document}
\citeauthor*{Huper.2007b} schrieben \citeyear{Huper.2007b} ein interessantes Buch über blablabla.\newline
\citeauthor{Huper.2007b} schrieben \citeyear{Huper.2007b} ein interessantes Buch über blablabla.\newline
ich will \citet*[223]{Huper.2007b} zitieren\newline
ich will \citet[223]{Huper.2007b} zitieren\newline
ich will \parencite{Huper.2007b} zitieren\newline
ich will \citet*{Huper.2007c} fanden herraus\newline
ich will \citet{Huper.2007c} zitieren\newline
ich will \parencite{Huper.2007c} fanden herraus\newline
ich will \citep[202]{Huper.2007c}\newline
ich will \citet[200]{Domenig.2007}\newline
%\makeatletter
%\renewcommand{\@cite}[2]{({#1\if@tempswa , #2\fi})}
%\renewcommand{\@biblabel}[1]{(#1)}
%\makeatother
% Literaturverzeichnis
\renewcommand{\refname}{Literatur- und Quellenverzeichnis}
\addcontentsline{toc}{section}{Literatur- und Quellenverzeichnis}
\printbibliography
\end{document}
The bib is called referenzen2.bib
Code: Select all
@book{Domenig.2007,
year = {2007},
title = {{Transkulturelle Kompetenz. Lehrbuch f{\"u}r Pflege-, Gesundheits- und Sozialberufe}},
address = {Bern},
publisher = {{Verlag Hans Huber}},
editor = {Domenig, Dagmar}
}
@incollection{Huper.2007b,
author = {H{\"u}per, Christa and Kerkow-Weil, Rosemarie},
title = {{Schmerz im Migrationskontext}},
publisher = {{Verlag Hans Huber}},
editor = {Domenig, Dagmar},
booktitle = {{Transkulturelle Kompetenz. Lehrbuch f{\"u}r Pflege-, Gesundheits- und Sozialberufe}},
year = {2007},
address = {Bern}
}
@incollection{Huper.2007c,
author = {H{\"u}per5 Christa and Kerkow-Weil5 Rosemarie and Kerkow-Weil2 Rosemarie2 and Kerkow-Weil3W Rosemarie3},
title = {{Schmerz im Migrationskontext}},
publisher = {{Verlag Hans Huber}},
editor = {Domenig, Dagmar},
booktitle = {{Transkulturelle Kompetenz. Lehrbuch f{\"u}r Pflege-, Gesundheits- und Sozialberufe}},
year = {2007},
address = {Bern}
}