BibTeX, biblatex and biber ⇒ removing line breaks in bibliography
removing line breaks in bibliography
I want to remove the line breaks in my bibliography so that the citation style would be as follows
[1]a reference. [2] a second reference. [3] etc.
rather than
[1]a reference.
[2]a second reference.
[3]etc.
Is there an easy way to do this using Bibtex?
Thanks
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
removing line breaks in bibliography
[1] The TeX Catalogue Online, Topic Index - Tools for managing your Bibliography
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
removing line breaks in bibliography
Code: Select all
\documentclass[...options...]{article}
\usepackage[...options...]{biblatex}
\usepackage[...options...]{paralist}
\bibliography{your_bib_file}
% for bibliography formatting via paralist enum environment
\renewenvironment*{thebibliography}{
\pointlessenum
\begin{inparaenum}
\renewcommand\makelabel[1]{ \textbf{[##1]}}
}{\end{inparaenum}}
\begin{document}
words \cite{yourPaper09}
more words \cite{anotherPaper08}
\printbibliography
\end{document}
http://www.ctan.org/tex-archive/macros/ ... /paralist/
http://www.ctan.org/tex-archive/macros/ ... /biblatex/
for more info and options.
Rich
-
- Posts: 1
- Joined: Wed Oct 12, 2011 8:29 pm
removing line breaks in bibliography
I have tried to get rid of line brakes in bibliography.
I use a mac and I've downloaded livetex or mactex.
As suggested on this forum I used the following
Code: Select all
\documentclass[...options...]{article}
\usepackage[...options...]{biblatex}
\usepackage[...options...]{paralist}
\bibliography{your_bib_file}
% for bibliography formatting via paralist enum environment
\renewenvironment*{thebibliography}{
\pointlessenum
\begin{inparaenum}
\renewcommand\makelabel[1]{ \textbf{[##1]}}
}{\end{inparaenum}}
\begin{document}
words \cite{yourPaper09}
more words \cite{anotherPaper08}
\printbibliography
\end{document}
Can anybody help?
I use latexshop for editing and I first latex the source file, then bibtex-it and then latex it again twice. The references appear in the text but in the ref section, the line breaks are still on as nothing has happened.
Many thanks in advance for any help or suggestions,
Istvan.