與 \footfullcite 的多個引用

與 \footfullcite 的多個引用

我過去常常\footfullcite{}在同一頁的腳註中包含完整的參考資料。我現在遇到的問題是我想引用多個參考文獻。要么我希望它們在腳註中用分號分隔,以便

Check.\footfullcite{Book1, Book2}

會給出以下輸出

檢查。

[1] A.作者,阿爾法,2001; B.布索爾,《布拉沃》,2002 年。

或者,理想情況下,我希望它看起來像這樣

檢查。

[1] A. 作者,阿爾法,2001 年。

[2] B.布索爾,Bravo,2002。

使用 \footfullcite 可以嗎?

\documentclass[a4paper]{scrreprt}
\usepackage[backend=biber, style=chem-angew, safeinputenc]{biblatex}

\begin{filecontents}{\jobname.bib}

@misc{Book1,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
@misc{Book2,
author = {Buthor, B.},
year = {2002},
title = {Bravo},
}

\end{filecontents}

\addbibresource{\jobname.bib}

\begin{document}

Check.\footfullcite{Book1}
Check.\footfullcite{Book1, Book2}

\end{document}

答案1

透過增加

\renewcommand\multicitedelim{\addsemicolon\space}

在您的序言中,多個項目之間放置一個分號。找到了這個這裡

答案2

對我來說,@hnina 的上述解決方案不起作用。因此,作為即時解決方案,我按照以下方式做到了 -

\footfullcite{abc}$^{,\hspace{2pt}}$\footfullcite{xyz}

相關內容