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
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
- 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.