를 사용하여 \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}