von Melissa » Sa 22. Apr 2017, 14:21
Danke dir, das Komma ist nun weg (an dieser Stelle durch deinen 2. Lösungsvorschlag dargestellt). Hier ein (hoffentlich brauchbares?) Minimalbeispiel für das 2. Problem, an dem ich gerade sitze:
\documentclass[12pt, oneside]{article}
\usepackage[backend = biber, bibencoding=utf8, style=authoryear, uniquename=false]{biblatex}
\addbibresource{bibliography.bib}
\DeclareFieldFormat{postnote}{#1}
\renewcommand{\postnotedelim}{\addspace}
\renewcommand{\multicitedelim}{\addsemicolon\space}
\usepackage{filecontents}
\begin{filecontents}{bibliography.bib}
@Article{Rao,
author = {R. P. Rao and D. H. Ballard},
title = {Predictive coding in the visual cortex: A functional interpretation of some extra-classical receptive-field effects},
journal = {Nature Neuroscience},
year = {1999},
volume = {2},
number = {1},
pages = {79-87},
}
@InProceedings{Barlow,
author = {H. B. Barlow},
title = {Possible principles underlying the transformation of sensory messages},
booktitle = {Sensory communication},
year = {1961},
editor = {W. A. Rosenblith},
pages = {217–234},
publisher = {Cambridge, MA: MIT press},
}
@Article{Ballard,
author = {D. H. Ballard and others},
title = {Parallel visual computation},
journal = {Nature},
year = {1983},
volume = {306},
number = {5938},
pages = {21–26},
}
\end{filecontents}
\begin{document}
\parencites[see also][on efficient coding and analysis by synthesis]{Barlow}[on Bayesian inversion and predictive coding]{Ballard, Rao}
\printbibliography
\end{document}
Die Ausgabe sieht folgendermaßen aus:
(see also Barlow, 1961 on efficient coding and analysis by synthesis; Ballard et al., 1983
; Rao and Ballard, 1999 on Bayesian inversion and predictive coding)
Die letzten 2 Autoren sollten nicht durch ein Komma, sondern durch ein "und" getrennt werden, also:
(see also Barlow, 1961 on efficient coding and analysis by synthesis; Ballard et al., 1983
and Rao and Ballard, 1999 on Bayesian inversion and predictive coding)
Wobei hier 2 "und" hintereinander auch nicht besonders gut aussehen...
Danke dir, das Komma ist nun weg (an dieser Stelle durch deinen 2. Lösungsvorschlag dargestellt). Hier ein (hoffentlich brauchbares?) Minimalbeispiel für das 2. Problem, an dem ich gerade sitze:
[code]\documentclass[12pt, oneside]{article}
\usepackage[backend = biber, bibencoding=utf8, style=authoryear, uniquename=false]{biblatex}
\addbibresource{bibliography.bib}
\DeclareFieldFormat{postnote}{#1}
\renewcommand{\postnotedelim}{\addspace}
\renewcommand{\multicitedelim}{\addsemicolon\space}
\usepackage{filecontents}
\begin{filecontents}{bibliography.bib}
@Article{Rao,
author = {R. P. Rao and D. H. Ballard},
title = {Predictive coding in the visual cortex: A functional interpretation of some extra-classical receptive-field effects},
journal = {Nature Neuroscience},
year = {1999},
volume = {2},
number = {1},
pages = {79-87},
}
@InProceedings{Barlow,
author = {H. B. Barlow},
title = {Possible principles underlying the transformation of sensory messages},
booktitle = {Sensory communication},
year = {1961},
editor = {W. A. Rosenblith},
pages = {217–234},
publisher = {Cambridge, MA: MIT press},
}
@Article{Ballard,
author = {D. H. Ballard and others},
title = {Parallel visual computation},
journal = {Nature},
year = {1983},
volume = {306},
number = {5938},
pages = {21–26},
}
\end{filecontents}
\begin{document}
\parencites[see also][on efficient coding and analysis by synthesis]{Barlow}[on Bayesian inversion and predictive coding]{Ballard, Rao}
\printbibliography
\end{document}[/code]
Die Ausgabe sieht folgendermaßen aus:
(see also Barlow, 1961 on efficient coding and analysis by synthesis; Ballard et al., 1983[b];[/b] Rao and Ballard, 1999 on Bayesian inversion and predictive coding)
Die letzten 2 Autoren sollten nicht durch ein Komma, sondern durch ein "und" getrennt werden, also:
(see also Barlow, 1961 on efficient coding and analysis by synthesis; Ballard et al., 1983 [b]and[/b] Rao and Ballard, 1999 on Bayesian inversion and predictive coding)
Wobei hier 2 "und" hintereinander auch nicht besonders gut aussehen...