使用 BibLatex,我嘗試添加引用特定頁面的引文,但我還想添加其他正常的引文。
目前我有:
...given here for the ground state as~\cite[eq.~6.34]{Foot2005} or \cite{Woodgate1980}:
但我不得不手動拆分它們。我正在尋找的是產生類似輸出的程式碼
...state as [1 (eq. 6.34), 2]
或類似的東西。
答案1
使用多引用版本
\cites[eq.~6.34]{Foot2005}{Woodgate1980}
使用\cites
您可以分別指定每個引文的前註和後注。語法是
\cites(global pre)(global post)[first pre][first post]{first key}...[last pre][last post]{last key}
所有標準引用命令都有多引用版本,您可以透過s
在引用命令末尾添加 來獲取它們,例如\parencite
-> \parencites
。