BibTeX, biblatex and biber ⇒ New line in bibliography
New line in bibliography
I think the answer will be easy, but I cannot manage it myself... i try to avoid that latex creates a new line after each reference in unsrt.bst. However, I cannot find what to change in this particular file, or should i change more than only something in this file.
Thanks for your help!
Erik
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
New line in bibliography
You'll have to search for
Code: Select all
newline$
However, you could at least test it

So not sure if this works and solves your problem.
Good luck,
jocom
New line in bibliography
Code: Select all
FUNCTION {fin.entry}
{ add.period$
write$
}
Code: Select all
\makeatletter
\newcounter{cit@tion}
\renewenvironment{thebibliography}[1]
{\section*{\refname}%
\sfcode`\.\@m%
\flushleft%
}{\endflushleft}
\def\@bibitem#1{%
\ifthenelse{\value{cit@tion}>0}{%
\textbullet\ %
}{}%
\refstepcounter{cit@tion}%
[\thecit@tion]~%
\if@filesw \immediate\write\@auxout{\string\bibcite{#1}{\thecit@tion}}\fi\ignorespaces%
}
\def\@lbibitem[#1]#2{%
\ifthenelse{\value{cit@tion}>0}{%
\textbullet\ %
}{}%
\refstepcounter{cit@tion}%
[#1]~%
\if@filesw \immediate\write\@auxout{\string\bibcite{#2}{#1}}\fi\ignorespaces%
}
\makeatother
Code: Select all
\renewenvironment{thebibliography}[1]
{\section*{\refname}%
\sfcode`\.\@m%
\def\par{}%
\ignorespaces%
}{}%