Hallo, ich habe bislang bei mehreren Verlagsorten die Anzahl der Verlage manuell eingeben. Berlin [u.a] Wie kann ich bei mehreren Einträgen die Ausgabe automatisieren, dass bei mehr als drei Orten nur ein Ort und dann entweder Berlin [u.a] oder Berlin et. al. oder Berlin u.a. erscheint? Open in Online-Editor
\documentclass{article} \usepackage[ style=authoryear-icomp, maxnames=2, backend=biber, safeinputenc, ]{biblatex} \renewbibmacro*{publisher+location+date}{% \printlist{location}% \iflistundef{publisher} {\setunit*{\addcomma\space}} {\setunit*{\addcolon\space}}% % \printlist{publisher}% \setunit*{\addcomma\space}% \usebibmacro{date}% \newunit} \usepackage{filecontents} \begin{filecontents}{\jobname.bib} @BOOK{Austin1967, author = {John L. Austin}, shortauthor = {Austin}, gender = {sm}, title = {How to do things with words}, year = {1967}, publisher = {Harvard University Press}, keywords = {secondary}, edition = {2}, location = {Cambridge [u.\,a.]}, } \end{filecontents} \usepackage{biblatex} \addbibresource{\jobname.bib} \begin{document} \fullcite{Austin1967} \printbibliography \end{document} gefragt 05 Jul '15, 20:10 HDBianca |
Dafür musst du die Option Open in Online-Editor
\documentclass{article} \usepackage[ style=authoryear-icomp, maxnames=2, maxitems=2, backend=biber, safeinputenc, ]{biblatex} \renewbibmacro*{publisher+location+date}{% \printlist{location}% \iflistundef{publisher} {\setunit*{\addcomma\space}} {\setunit*{\addcolon\space}}% % \printlist{publisher}% \setunit*{\addcomma\space}% \usebibmacro{date}% \newunit} \usepackage{filecontents} \begin{filecontents}{\jobname.bib} @BOOK{Austin1967, author = {John L. Austin}, shortauthor = {Austin}, gender = {sm}, title = {How to do things with words}, year = {1967}, publisher = {Harvard University Press}, keywords = {secondary}, edition = {2}, location = {Berlin and Cambridge and Harvard}, } \end{filecontents} \usepackage{biblatex} \addbibresource{\jobname.bib} \begin{document} \fullcite{Austin1967} \printbibliography \end{document} beantwortet 06 Jul '15, 10:42 sudo |