von PatrickW » Di 5. Nov 2019, 15:44
Hallo ihr Lieben,
anbei ein Minimalbeispiel, von dem ich denke dass ich irgendeine Kleinigkeit vergessen habe. Das Problem ist, dass er mir die Nummerierung der Zitate im Fließtext nicht mit 1 beginnend durchnummeriert, sondern die Zahlen an die Sortierung der Nachnamen der Authoren anpasst. Ich möchte nach Vorgabe mit 1 beginnen und fortlaufend nummerieren.
Wie kann ich das realisieren?
\documentclass{article}
\usepackage[style=numeric,backend=biber]{biblatex}
\addbibresource{testbib.bib}
\begin{document}
1. Zitat: \cite{b3} \par
2.Zitat \parencite[vgl.][]{b2} \par
3. Zitat \cite{b1} \par
\printbibliography
\end{document}
Die Literaturdatei:
@book{b1,
author = {A},
title = {Physics},
date = 1929,
translator = {Wicksteed, P. H. and Cornford, F. M.},
publisher = {G. P. Putnam},
shorttitle = {Physics},
}
@book{b2,
author = {B},
title = {The Importance of Being Earnest: A Trivial
Comedy for Serious People},
year = 1899,
series = {English and American drama of the Nineteenth
Century},
publisher = {Leonard Smithers and Company},
}
@book{b3,
author = {C},
title = {Physics},
date = 1929,
translator = {Wicksteed, P. H. and Cornford, F. M.},
publisher = {G. P. Putnam},
shorttitle = {Physics},
}
Vielen Dank für eure Hilfe
Beste Grüß
Patrick
Hallo ihr Lieben,
anbei ein Minimalbeispiel, von dem ich denke dass ich irgendeine Kleinigkeit vergessen habe. Das Problem ist, dass er mir die Nummerierung der Zitate im Fließtext nicht mit 1 beginnend durchnummeriert, sondern die Zahlen an die Sortierung der Nachnamen der Authoren anpasst. Ich möchte nach Vorgabe mit 1 beginnen und fortlaufend nummerieren.
Wie kann ich das realisieren?
[code]\documentclass{article}
\usepackage[style=numeric,backend=biber]{biblatex}
\addbibresource{testbib.bib}
\begin{document}
1. Zitat: \cite{b3} \par
2.Zitat \parencite[vgl.][]{b2} \par
3. Zitat \cite{b1} \par
\printbibliography
\end{document}
[/code]
Die Literaturdatei:
[code]
@book{b1,
author = {A},
title = {Physics},
date = 1929,
translator = {Wicksteed, P. H. and Cornford, F. M.},
publisher = {G. P. Putnam},
shorttitle = {Physics},
}
@book{b2,
author = {B},
title = {The Importance of Being Earnest: A Trivial
Comedy for Serious People},
year = 1899,
series = {English and American drama of the Nineteenth
Century},
publisher = {Leonard Smithers and Company},
}
@book{b3,
author = {C},
title = {Physics},
date = 1929,
translator = {Wicksteed, P. H. and Cornford, F. M.},
publisher = {G. P. Putnam},
shorttitle = {Physics},
}
[/code]
Vielen Dank für eure Hilfe
Beste Grüß
Patrick