There are several examples for making bibliographies not start each entry with new lines (e.g., Removing Line Breaks in Bibliography compiled with Biblatex and Removing Line Breaks in Bibliography compiled with Biblatex). Generally (as in my case) this is because of page limits in grant applications.
However, all the ones I've found use a numbered citation system, while I want to use natbib and have the author's name appear. I can't seem to make these work with natbib.
This example (from Removing Line Breaks in Bibliography compiled with Biblatex) works if the natbib command is commented out.
\documentclass{article}
%\usepackage{natbib}
\usepackage[firstinits=true,backend=bibtex,doi=false,isbn=false,url=false]{biblatex}
\AtEveryBibitem{%
\clearfield{pages}%
}
\renewcommand{\bibfont}{\normalfont\footnotesize}
\addbibresource{biblatex-examples.bib}
\defbibenvironment{bibliography}
{\noindent}
{\unspace}
{\printtext[labelnumberwidth]{%
\printfield{prefixnumber}%
\printfield{labelnumber}}
\addspace}
\renewbibmacro*{finentry}{\finentry\addspace}
\begin{document}
\cite{wilde,shore,springer}
\printbibliography[heading=none]
\end{document}
Is there a way to make it work with natbib?
