von Gast » Fr 9. Nov 2012, 16:11
Also mein Minimalbeispiel
\documentclass{scrreprt}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[
bibwarn=true,
style=authoryear,
block=space,
sorting=nty,
natbib=true,
maxcitenames=2,
maxbibnames=10,
uniquename=init,
firstinits=true,
backend=biber,
hyperref=true,
isbn=false,
url=false,
doi=false,
bibencoding=utf8
]{biblatex}
\bibliography{main}
\addbibresource{main.bib}
\setlength{\bibitemsep}{6pt}
\begin{document}
\citep{Reubold2005}
\citep{Herascy5023}
\end{document}
leider wußte ich nicht genau, wie ich da die zu zitierenden paper einbaue, also habe ich eine minimale main.bib erstellt
%!TEX TS-program = pdflatex
%!Tex encoding = UTF-8 Unicode
%!Mode:: "TeX:UTF-8:Hard:DE"
%% ------- BPC --------------------
@article{Reubold2005,
author = {Reubold, Thomas F. and Eschenburg, Susanne and Becker, Andreas and Leonard, Marilyn and Schmid, Sandra L. and Vallee, Richard B. and Kull, F. Jon and Manstein, Dietmar J.},
title = {Crystal structure of the GTPase domain of rat dynamin 1},
volume = {102},
number = {37},
pages = {13093-13098},
year = {2005},
month = {may},
journal = {Proceedings of the National Academy of Sciences of the United States of America}
}
@article{Herascy5023,
author = {Heras, Begona and Martin, Jennifer L.},
title = {Post-crystallization treatments for improving diffraction quality of protein crystals},
journal = {Acta Crystallographica Section D},
year = {2005},
volume = {61},
number = {9},
pages = {1173--1180},
month = {Sep},
}
Ergebnis ist weiterhin die Nummerierung der Jahre. Wie man sehen kann, sind weder Titel, noch Autoren, noch das journal der Publikation gleich, nur das Jahr ist gleich (2005).
(Reubold u. a., 2005b)
(Heras und Martin, 2005a)
Hab in der Reihenfolge zitiert um noch zu zeigen, dass offensichtlich nach Erstautor nummeriert wird.
Also mein Minimalbeispiel
[code]
\documentclass{scrreprt}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[
bibwarn=true,
style=authoryear,
block=space,
sorting=nty,
natbib=true,
maxcitenames=2,
maxbibnames=10,
uniquename=init,
firstinits=true,
backend=biber,
hyperref=true,
isbn=false,
url=false,
doi=false,
bibencoding=utf8
]{biblatex}
\bibliography{main}
\addbibresource{main.bib}
\setlength{\bibitemsep}{6pt}
\begin{document}
\citep{Reubold2005}
\citep{Herascy5023}
\end{document}
[/code]
leider wußte ich nicht genau, wie ich da die zu zitierenden paper einbaue, also habe ich eine minimale main.bib erstellt
[code]
%!TEX TS-program = pdflatex
%!Tex encoding = UTF-8 Unicode
%!Mode:: "TeX:UTF-8:Hard:DE"
%% ------- BPC --------------------
@article{Reubold2005,
author = {Reubold, Thomas F. and Eschenburg, Susanne and Becker, Andreas and Leonard, Marilyn and Schmid, Sandra L. and Vallee, Richard B. and Kull, F. Jon and Manstein, Dietmar J.},
title = {Crystal structure of the GTPase domain of rat dynamin 1},
volume = {102},
number = {37},
pages = {13093-13098},
year = {2005},
month = {may},
journal = {Proceedings of the National Academy of Sciences of the United States of America}
}
@article{Herascy5023,
author = {Heras, Begona and Martin, Jennifer L.},
title = {Post-crystallization treatments for improving diffraction quality of protein crystals},
journal = {Acta Crystallographica Section D},
year = {2005},
volume = {61},
number = {9},
pages = {1173--1180},
month = {Sep},
}
[/code]
Ergebnis ist weiterhin die Nummerierung der Jahre. Wie man sehen kann, sind weder Titel, noch Autoren, noch das journal der Publikation gleich, nur das Jahr ist gleich (2005).
(Reubold u. a., 2005b)
(Heras und Martin, 2005a)
Hab in der Reihenfolge zitiert um noch zu zeigen, dass offensichtlich nach Erstautor nummeriert wird.