同一文档中是否可以用两个引用段分隔两种引用样式?我希望在第一个段中使用数字样式,如下面的 MWE 所示,在第二段中作者年份风格。
这是一个 M(非)WE。
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{biblatextest.bib}
@BOOK{BookA03,
author = {Author Aaa},
title = {Some Title},
publisher = {Some Publisher},
year = 2003
}
@BOOK{BookB02,
author = {Author Bbb},
title = {Some Title},
publisher = {Some Publisher},
year = 2002
}
\end{filecontents}
\usepackage[style=numeric]{biblatex}
\addbibresource{biblatextest.bib}
\begin{document}
I want the citations to be in numeric in this segment as is.
\cite{BookA03,BookB02}
\printbibliography
\vspace{2cm}
\begin{refsegment}
Is there a way to change the citation style from numeric to authoryear in this new refsegment?
\cite{BookA03,BookB02}
\end{refsegment}
\printbibliography[segment=2]
\end{document}