Biblatex: 두 \printbibliography 섹션 사이의 공간을 제어합니다.

Biblatex: 두 \printbibliography 섹션 사이의 공간을 제어합니다.

나는 달리고 있다비블텍스다음을 사용하여 두 개의 참고문헌 섹션을 인쇄하려면

\printbibliography[prefixnumbers=P,category=modlabel]
\printbibliography[notcategory=modlabel,heading=none]

두 섹션 사이에는 참고문헌 항목 사이보다 약간 더 큰 공간이 있습니다. 그 공간을 줄이는 것이 가능한가요?

다음은 [P2]와 [3] 사이에 공백이 있는 예입니다.

여기에 이미지 설명을 입력하세요

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[british]{babel}
\usepackage{csquotes}
\usepackage[style=numeric-verb, backend=bibtex, sorting=none,    defernumbers=true]{biblatex}
\addbibresource{biblatex-examples.bib}

\DeclareBibliographyCategory{modlabel}
\addtocategory{modlabel}{cicero,geer}

\begin{document}
\nocite{geer,wilde,cicero,markey,aristotle:physics,aristotle:rhetoric}
\printbibliography[prefixnumbers=P,category=modlabel]
\printbibliography[notcategory=modlabel,heading=none]
\end{document}

몇 가지 힌트를 주셔서 감사합니다!

이어지는 질문입니다https://tex.stackexchange.com/a/236650/59177. 그림과 MWE는 모두 moewe의 답변에서 복사되었습니다.

답변1

간단한 해결책은 다음과 같습니다.

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[british]{babel}
\usepackage{csquotes}
\usepackage[style=numeric-verb, sorting=none, defernumbers=true]{biblatex}%backend=bibtex,
\addbibresource{biblatex-examples.bib}

\DeclareBibliographyCategory{modlabel}
\addtocategory{modlabel}{cicero,geer}

\begin{document}

\nocite{geer,wilde,cicero,markey,aristotle:physics,aristotle:rhetoric}
\printbibliography[prefixnumbers=P,category=modlabel]
\vspace{-2\topsep}
\printbibliography[notcategory=modlabel,heading=none]

\end{document} 

여기에 이미지 설명을 입력하세요

관련 정보