Falsche Nummerierung Bibliographie Biblatex

Falsche Nummerierung Bibliographie Biblatex

Ich habe mein Bibtex-Dokument mit Bibliographie. Wenn ich die ersten beiden Referenzen in das Dokument einfüge, läuft alles perfekt. Aber als ich die dritte Referenz hinzufüge, erhalte ich eine falsche Nummerierung: Die zweite Referenz erscheint als „3“ und die dritte als „2“. Eine weitere wichtige Tatsache ist, dass ich meine Abschlussarbeit in verschiedenen Kapiteln schreibe, sodass die Referenzen nicht in einer einzigen .tex-Datei enthalten sind. Ich bin mir also nicht sicher, welches MWE ich senden soll. Ich bin für Ihre Hilfe wirklich dankbar. Danke.

    \documentclass[a4paper,openright,10pt]{book}

\usepackage[utf8]{inputenc}

\usepackage[spanish, es-tabla]{babel}

\usepackage{setspace}
\usepackage[backend=bibtex,style=chem-angew,citestyle=numeric-comp]{biblatex}
\addbibresource{biblio} 
\usepackage{csquotes}
 \usepackage{titlesec}
\usepackage{tocloft}
\begin{document}

In einem der Kapitel habe ich:

  (efecto magnetoeléctrico) \cite{manfred_fiebig_revival_2005}.

Das ist der erste Verweis in einem anderen Kapitel

  tetragonal \cite{mishra_effect_2008}. raras \cite{zhang_effect_2010}. 
A\cite{mishra_effect_2008,hardy_effects_2009}.
  \end{document}

Biblio-Datei (nur die hier angezeigten Referenzen, das Dokument enthält jedoch viel mehr ...):

    @article{hardy_effects_2009,
title = {Effects of precursor chemistry and thermal treatment conditions on obtaining phase pure bismuth ferrite from aqueous gel precursors},
volume = {29},
issn = {0955-2219},
url = {http://www.sciencedirect.com/science/article/pii/S0955221909002416},
doi = {http://dx.doi.org/10.1016/j.jeurceramsoc.2009.05.018},
pages = {3007 -- 3013},
number = {14},
journaltitle = {Journal of the European Ceramic Society},
author = {Hardy, A. and Gielis, S. and Rul, H. Van den and D’Haen, J. and Bael, M. K. Van and Mullens, J.},
date = {2009},
keywords = {Multiferroic properties}
   }
@article{manfred_fiebig_revival_2005,
title = {Revival of the magnetoelectric effect},
volume = {38},
doi = {10.1088/0022-3727/38/8/R01},
pages = {R123--R152},
journaltitle = {{JOURNAL} {OF} {PHYSICS} D: {APPLIED} {PHYSICS}},
shortjournal = {J. Phys. D: Appl. Phys.},
author = {{Manfred Fiebig}},
date = {2005}
}
@article{mishra_effect_2008,
title = {Effect of yttrium on improvement of dielectric properties and magnetic switching behavior in {BiFeO}3},
volume = {20},
pages = {045218},
number = {4},
journaltitle = {Journal of Physics: Condensed Matter},
author = {Mishra, {RK} and Pradhan, Dillip K and Choudhary, {RNP} and Banerjee, A},
date = {2008}
}
@article{saleh_medina_leila_m._structural_2014,
title = {Structural, dielectric and magnetic properties of Bi1-{xYxFeO}3 (0 {\textless}x {\textless} 0.2) obtained by acid–base co-precipitation},
volume = {592},
doi = {10.1016/j.jallcom.2013.12.243},
pages = {306--312},
journaltitle = {Journal of Alloys and Compounds},
shortjournal = {J. Alloys. Comp.},
author = {{Saleh Medina, Leila M.} and {Jorge, Guillermo} and {Negri, R. Martín}},
date = {2014}
}
@article{zhang_effect_2010,
title = {Effect of Eu substitution on the crystal structure and multiferroic properties of {BiFeO} 3},
volume = {507},
url = {http://www.sciencedirect.com/science/article/pii/S0925838810018621},
pages = {157--161},
number = {1},
journaltitle = {Journal of Alloys and Compounds},
author = {Zhang, Xingquan and Sui, Yu and Wang, Xianjie and Wang, Yang and Wang, Zhu},
urldate = {2016-02-14},
date = {2010},
file = {Snapshot:C\:\\Users\\L-COM\\AppData\\Roaming\\Zotero\\Zotero\\Profiles\\wvijlgbz.default\\zotero\\storage\\NHSBGTQS\\S0925838810018621.html:text/html}
}

Antwort1

Der Grund, warum die Zahlen in Ihrem Dokument in der falschen Reihenfolge erscheinen, ist, dass der von Ihnen verwendete Bibliografiestil chem-angewdie Bibliografie nach Autor sortiert. Normalerweise würde ich dies so lassen, da dies Teil des Bibliografiestils ist. Sie können dies jedoch jederzeit überschreiben, wie im Abschnittbiblatex manual. Insbesondere wenn Sie nur Optionen hinzufügen sorting=none, biblatexwerden die Einträge in der Reihenfolge sortiert, in der sie zitiert werden:

TeX-Datei:

\documentclass[a4paper,openright,10pt]{article}

\usepackage[spanish, es-tabla]{babel}
\usepackage[
  backend=bibtex,
  style=chem-angew,
  citestyle=numeric-comp,
  sorting=none,  % <-- Sort in the order they appear
]{biblatex}
\addbibresource{leila.bib}

\begin{document}
\cite{b}

\cite{a}

\cite{c}

\printbibliography
\end{document}

Bib-Datei:

@article{a,
  name={Article 1},
  author={John A},
  journal={Journal A},
}
@article{b,
  name={Article 2},
  author={John B},
  journal={Journal B},
}
@article{c,
  name={Article 3},
  author={John C},
  journal={Journal C},
}

Ausgabe:

Ausgabe

verwandte Informationen