哪個變數控制條目集中條目的分隔

哪個變數控制條目集中條目的分隔

使用\defbibentryset並且block=nbpar我想用新行替換預設分號以分隔條目集中的條目。哪個biblatex變數控制它?

答案1

重新定義\entrysetpunct(手冊中沒有提到-定義位於biblatex.def)。

\documentclass{article}

\usepackage[block=nbpar]{biblatex}

% Original definition
% \newcommand*{\entrysetpunct}{\addsemicolon\space}

% Changed definition
\renewcommand*{\entrysetpunct}{\par\vspace{\bibitemsep}}

\defbibentryset{myset}{A01,B02}

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@misc{A01,
  author = {Author, A.},
  year = {2001},
  title = {Alpha},
}
@misc{B02,
  author = {Buthor, B.},
  year = {2002},
  title = {Bravo},
}
@misc{C03,
  author = {Cuthor, C.},
  year = {2003},
  title = {Charlie},
}
\end{filecontents}

\addbibresource{\jobname.bib}

\begin{document}

Some text \autocite{myset,C03}.

\printbibliography

\end{document}

在此輸入影像描述

相關內容