如何在一個引用中引用多個引用

如何在一個引用中引用多個引用

我想做以下事情。在我的文字中,我想引用以下內容

\cite{ref1}

在該參考文獻下的參考文獻部分中,例如[1],應該有某物。如下:

[1] (a)author1,author2,...,journal1,vol1,pp1year1,(b)author3,author4,...,journal2,vol2,pp2,year2(c)等等

這不是參考文獻風格的問題,而是如何在一個引文下做出許多參考文獻(a)、(b)、(c)[1]?

答案1

biblatex/biber 支援固定集(圍兜中的@set)和動態集:

\documentclass{article}
\usepackage[utf8]{inputenc} 
\usepackage[T1]{fontenc}
\usepackage[subentry]{biblatex}
\addbibresource{biblatex-examples.bib}
\defbibentryset{multi}{shore,angenendt,westfahl:space}

\begin{document}
\cite{set}
\cite{multi} \cite{shore}

\printbibliography

\end{document}

在此輸入影像描述

相關內容