设置 bibtopic 下参考书目条目之间的间距

设置 bibtopic 下参考书目条目之间的间距

我正在使用包bibtopic在单个文档中显示多个参考书目。

\documentclass[a4paper,11pt]{article}
%\usepackage{natbib,hyperref}
\usepackage{bibtopic} % For multiple bibliographies

%\setlength{\bibsep}{6pt} % Space between entries
\bibliographystyle{is-unsrt}

\begin{document}
...
    \subsection*{Some heading}
        \begin{btSect}{BookList1}
        \btPrintNotCited
        \end{btSect}
...
    \subsection*{Some other heading}
        \begin{btSect}{BookList2}
        \btPrintNotCited
        \end{btSect}
...
\end{document}

使用 包时natbib,我习惯用 来设置各个参考书目条目之间的间距\setlength{\bibsep}{6pt}。在 包下bibtopic,这样做没有效果。

如何设置包下各个参考书目条目之间的间距bibtopic

答案1

手动的表示bibtopic该包与 兼容natbib。因此,以下代码将条目之间的间距设置为24pt

\documentclass[a4paper,11pt]{article}
\usepackage[numbers]{natbib}
\usepackage{bibtopic} % For multiple bibliographies

\setlength{\bibsep}{24pt} % Space between entries
\bibliographystyle{is-unsrt}

\begin{document}
...
    \subsection*{Some heading}
        \begin{btSect}{books}
        \btPrintNotCited
        \end{btSect}
...
    \subsection*{Some other heading}
        \begin{btSect}{articles}
        \btPrintNotCited
        \end{btSect}
...
\end{document}

在此处输入图片描述

请注意,如果您想使用数字书目,则需要使用该numbers选项。natbib

相关内容