BibTeX, biblatex and biberAvoid skipping line with Biblatex

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Martin1322
Posts: 1
Joined: Thu Dec 12, 2019 5:16 pm

Avoid skipping line with Biblatex

Post by Martin1322 »

Hi !

I would have like to know how to reduce the space between each bibliographic reference in a bibliography ? How to not skip a line between each reference ?

I have to respect the following template :
\begin{thebibliography}{}
\policeII
\renewcommand {\baselinestretch}{1.0}
\end{thebibliography}

However, I use Biblatex and I do not know how to take into account the line
"\policeII
\renewcommand {\baselinestretch}{1.0}"

because I deal with my bibliography with these two lines :
\bibliographystyle{ieeetr}
\bibliography{./SFT2020}

Thank you very much for your help. :)
Bye !
Martin

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

Avoid skipping line with Biblatex

Post by Stefan Kottwitz »

Hi Martin,

welcome to the forum!

You could load the etoolbox package by

Code: Select all

\usepackage{etoolbox}
and write

Code: Select all

\AtBeginEnvironment{thebibliography}{\policeII
\renewcommand {\baselinestretch}{1.0}}
Stefan
LaTeX.org admin
User avatar
Ijon Tichy
Posts: 640
Joined: Mon Dec 24, 2018 10:12 am

Avoid skipping line with Biblatex

Post by Ijon Tichy »

Redefining \baselinestretch is LaTeX 2.09 style (the LaTeX before 1994), but it isn't good style in LaTeX2e (the LaTeX since 1994). You should use the high level interface \linespread{1.0} instead.
Sorry, but I can no longer participate here as the administrator is trampling on my wishes on one of his other platforms. :cry:
Post Reply