General ⇒ how to modify the entries of the bibliography
how to modify the entries of the bibliography
I created my own bibliography style with "latex makebst", but I still want to "compress" it, to save some space.
Basically, I don't want the blank row between one entry and the following: do you have any idea how to do so?
Thank you.
Cheers, Mattia.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
how to modify the entries of the bibliography
Code: Select all
\makeatletter
\let\thebibliographyOLD\thebibliography
\renewcommand{\thebibliography}[1]{\thebibliographyOLD{#1}\setlength{\itemsep}{0pt}}
\makeatother
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: how to modify the entries of the bibliography
good trick!
I just want to note that \makeatletter and \makeatother are unnecessary in this case.
Stefan
Re: how to modify the entries of the bibliography
Cheers,
MAttia.