Biblatex: 2 つの \printbibliography セクション間のスペースを制御する

Biblatex: 2 つの \printbibliography セクション間のスペースを制御する

私は走っていますビブラテックス2つの参考文献セクションを印刷するには

\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} 

ここに画像の説明を入力してください

関連情報