嗨,我想知道如何使用 biblatex 引用某些内容,同时只引用子引用。目前,使用子条目时,我必须在引用子条目之前引用整个集合,以便陈述正确的条目。但如果我在引用整个组之前意外地放入子引用,那么编号就是错误的,这很笨拙,有办法解决这个问题吗?下面显示了我的意思。
\begin{document}
\usepackage[
backend=biber,
style=numeric,
citestyle=ieee,
subentry,
mcite=true,
]{biblatex} %biblatex, more modern form of bibtex
\defbibentryset{abook}{bookDescription, 1stSection, 2ndSection}
\addbibresource{refs.bib} %if you want to use bib latex, add sources
\printbibliography
You have to cite \cite{abook} before \cite{somethingelse} so that the \cite{1st section} has the correct number attached. Is there a way to not need to cite \cite{abook}?
\end{document}
(参考文献)
@book{bookDescription,
title={title},
author={author},
year={year},
publisher={pub},
}
@book{1stSection,
pages = {23-30}
}
@book{2ndSection,
pages = {387-400}
}
@article{somethingelse,
}
非常感谢您的任何回复。