Hallo Leute,
ich hab folgendes Problem.
Ich habe das Literaturverzeichnis mit biblatex erstellt und ein paar Anpassungen durchgeführt, siehe Minibeispiel.
Ich habe 2 Probleme statt Aufl. und Kap. hätte ich gerne die Wörter Auflage und Kapitel dort stehen.
Zudem wird bei in Proceedings die Reihenfolge: Title, Booktitle, Volume, Series angezeigt. Ich brauche aber die Reihenfolge Title, Booktitle, Series, Volume.
\begin{filecontents}{\jobname.bib}
\@InProceedings{LM,
author = {Steven A. Lippman and John J. McCall},
title = {The economics of uncertainty: Selected topics and probabilistic methods},
booktitle = {Handbook of Mathematical Economics},
year = {1981},
editor = {K. J. Arrow and M. D. Intriligator},
volume = {1},
pages = {211-284},
publisher = {North-Holland},
chapter = {8}
}
\@InProceedings{MS,
author = {Esther Moh and Günter Schmidt},
title = {Empirical Analysis of an Online Algorithm for Multiple Trading Problems},
booktitle = {Modelling, Computation and Optimization in Information Systems and Management Sciences},
year = {2008},
editor = {H.A. {Le Thi} and P. Bouvry and T. Pham Dinh},
series = {Communications in Computer and Information Science},
volume = {14},
pages = {293-302},
address = {Berlin Heidelberg},
publisher = {Springer}
}
\@Book{Bou,
title = {Wahrscheinlichkeitsrechnung und schließende Statistik},
publisher = {Springer},
year = {2013},
author = {Günther Bourier},
address = {Wiesbaden},
edition = {8}
}
\end{filecontents}
\RequirePackage[patch]{kvoptions}
\documentclass[]{scrbook}
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage[backend=biber,style=authoryear, maxnames=2,maxbibnames=8,dashed = false,uniquelist=false,uniquename=false,firstinits=true,]{biblatex}
\addbibresource{\jobname.bib}
% Reihenfolge der Daten im Literaturverzeichnis
\renewbibmacro*{journal+issuetitle}{%
\usebibmacro{journal}%
\setunit*{\addspace}%
\iffieldundef{series}
{}
{\newunit
\printfield{series}}% }%
\setunit{\addcomma\addspace}
\printfield{volume}%
\iffieldundef{number}
{}
{\mkbibparens{\printfield{number}}}%
\setunit{\addcomma\space}%
\printfield{eid}%
\setunit{\addspace}%
\usebibmacro{issue+date}%
\setunit{\addcolon\space}%
\usebibmacro{issue}%
\newunit}
% Reihenfolge für Bücher
\renewbibmacro*{publisher+location+date}{%
\iflistundef{publisher}
{\setunit*{\addcomma\space}}
{\setunit*{\addcolon\space}}%
\printlist{publisher}%
\setunit*{\addcomma\space}%
\printlist{location}%
\setunit*{\addcomma\space}%
\usebibmacro{date}%
\newunit}
\begin{document}
Beispieltext \cite{MS}, \cite{Bou}, \cite{LM}
\printbibliography
\end{document}
[\code]