我正在使用biblatex
withbiber
选项。有没有办法使用ieee
括号中数字的引用样式,按出现顺序排序,但参考文献按\printbibliography
字母顺序显示(例如,按作者姓名)。
这意味着在本节中参考,条目不是根据其引用次数排序,而是根据另一个标准排序。
以下 MWE 我希望按字母顺序排列数字,[3] [2] [1]
以便每个参考文献只有一个数字。例如,目前糖果参考[1]
按出现的顺序获取编号,但[3]
按字母顺序获取编号。
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[backend=biber,style=ieee]{biblatex}
\usepackage{filecontents}
\begin{filecontents*}{biblatex-ieee.bib}
@book{IEEEexample:bookwitheditor,
editor = "J. C. Candy and G. C. Temes",
title = "Oversampling Delta-Sigma Data Converters Theory,
Design and Simulation",
publisher = "{IEEE} Press.",
location = "New York",
year = "1992"
}
@inbook{IEEEexample:incollectionwithseries,
author = "J. B. Anderson and K. Tepe",
title = "Properties of the Tailbiting {BCJR} Decoder",
booktitle = "Codes, Systems and Graphical Models",
series = "{IMA} Volumes in Mathematics and Its Applications",
publisher = "Springer-Verlag",
location = "New York",
year = "2000"
}
@book{IEEEexample:inbookpagesnote,
author = "B. K. Bul",
title = "Theory Principles and Design of Magnetic Circuits",
publisher = "Energia Press",
loction = "Moscow",
year = "1964",
pages = "464",
note = "(in Russian)"
}
\end{filecontents*}
\addbibresource{biblatex-ieee.bib}
\begin{document}
\cite{IEEEexample:bookwitheditor}\cite{IEEEexample:inbookpagesnote}\cite{IEEEexample:incollectionwithseries}
\printbibliography[title=Unsorted]
\newrefcontext[sorting=nty]
\printbibliography[title=Alphabetic]
\end{document}