잘못된 숫자 표기 참고문헌 biblatex

잘못된 숫자 표기 참고문헌 biblatex

참고문헌이 포함된 bibtex 문서가 있습니다. 문서에 처음 두 참조를 삽입하면 모든 것이 완벽해집니다. 그러나 세 번째 참조를 추가하면 잘못된 번호가 표시됩니다. 두 번째 참조는 "3"으로 나타나고 세 번째 참조는 "2"로 나타납니다. 또 다른 중요한 사실은 제가 논문을 여러 장에 걸쳐 작성하고 있기 때문에 참조가 고유한 .tex 파일에 있지 않아 어떤 MWE를 보내야 할지 확신할 수 없다는 것입니다. 당신의 도움에 정말 감사드립니다. 감사해요.

    \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}

내가 가지고 있는 장 중 하나에는 다음과 같은 내용이 있습니다.

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

그것은 다른 장의 첫 번째 참조입니다

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

Biblio 파일(여기에 표시된 참조만 있지만 문서에는 훨씬 더 많은 내용이 포함되어 있습니다...):

    @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}
}

답변1

문서에서 숫자가 순서대로 표시되지 않는 이유는 사용 중인 참고문헌 스타일( )이 chem-angew저자별로 참고문헌을 정렬하기 때문입니다. 일반적으로 나는 이것을 참고문헌 스타일의 일부이기 때문에 그대로 두겠습니다. 그러나 다음에 설명된 대로 언제든지 이를 재정의할 수 있습니다.biblatex manual. 특히 옵션을 추가하면 sorting=none인용 biblatex된 순서대로 항목이 정렬됩니다.

TeX 파일:

\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}

턱받이 파일:

@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},
}

산출:

산출

관련 정보