如何增加参考书目条目之间的行距?

如何增加参考书目条目之间的行距?

大家好,我的文档是用 1.5 编写的。但是,我想增加参考书目条目之间的行距。这是我的代码的一部分:

\documentclass[a4paper,12pt]{report}
\renewcommand{\baselinestretch}{1.5}
\usepackage[margin=2.5cm,top=2.5cm,bottom=2.5cm]{geometry} 
\usepackage[english]{babel}
\usepackage[backend=biber,style=apa, maxcitenames=3]{biblatex}
\addbibresource{references.bib}
\usepackage{setspace}


(...)


\printbibliography

\end{document}

答案1

使用此代码

\begingroup
\setlength\bibitemsep{20pt} 
\setstretch{1}
\printbibliography
\endgroup

A

\documentclass[a4paper,12pt]{report}
\renewcommand{\baselinestretch}{1.5}
\usepackage[margin=2.5cm,top=2.5cm,bottom=2.5cm]{geometry} 
\usepackage[english]{babel}
\usepackage[backend=biber,style=apa, maxcitenames=3]{biblatex}
\usepackage{setspace}

\usepackage{filecontents}
\begin{filecontents}[overwrite]{\jobname37.bib}
    % examples form biblatex-examples.bib
    @article{sarfraz,
        author       = {M. Sarfraz and M. F. A. Razzak},
        title        = {Technical section: {An} algorithm for automatic capturing of
            the font outlines},
        year         = 2002,
        volume       = 26,
        number       = 5,
        pages        = {795-804},
        issn         = {0097-8493},
        journal      = {Computers and Graphics},
    }
    
    @article{bertram,
        author       = {Bertram, Aaron and Wentworth, Richard},
        title        = {Gromov invariants for holomorphic maps on {Riemann} surfaces},
        journaltitle = {JAMS},
        date         = 1996,
        volume       = 9,
        number       = 2,
        pages        = {529-571},
        langid       = {english},
        langidopts   = {variant=american},
        shorttitle   = {Gromov invariants},
    }
    
    @book{kullback,
        author       = {Kullback, Solomon},
        title        = {Information Theory and Statistics},
        year         = 1959,
        publisher    = {John Wiley \& Sons},
        location     = {New York},
    }
    
    
    @online{markey,
        author       = {Markey, Nicolas},
        title        = {Tame the {BeaST}},
        date         = {2005-10-16},
        url          = {http://mirror.ctan.org/info/bibtex/tamethebeast/ttb_en.pdf},
        subtitle     = {The {B} to {X} of {BibTeX}},
        version      = {1.3},
        urldate      = {2006-10-01},
        langid       = {english},
        langidopts   = {variant=american},
        sorttitle    = {Tame the Beast},
    }
\end{filecontents}

\addbibresource{\jobname37.bib}

\begin{document}

From \cite{sarfraz}.  See also \cite{bertram} and \cite{kullback} and \cite{markey}.

\begingroup
\setlength\bibitemsep{20pt} 
\setstretch{1}
\printbibliography
\endgroup

\end{document

答案2

您可以使用\bibitemsep设置条目之间的行距:

\setlength\bibitemsep{10pt}
\printbibliography

在此处输入图片描述

如果你想在每个条目中留出一行间距,只需添加\setstretch{1}

\setlength\bibitemsep{10pt}
\printbibliography

在此处输入图片描述

相关内容