I am using the biblatex package in an article document, and am trying to list references all in one line, as the writer of this question is trying to do. I've tried the fix that is offered, but it didn't work as expected since I am using biblatex. I tried to follow the link in the second answer that mentions biblatex, but the link is broken. In his answer, he mentions a parameter called \defbiblatex, but I could not find its definition in the biblatex documentation.
Currently, I am using biblatex as follows:
\documentclass[11pt]{article}
\usepackage[
backend=biber,
style=numeric-comp,
sort=nty
]{biblatex}
\addbibresource{references.bbl}
\renewcommand{\refname}{References \vspace{-0.6\baselineskip}} % no extra vert. space after title
\setlength{\bibitemsep}{0pt} % no extra vert. space between bib items
\printbibliography
What is the simplest way for me to format the bibliography so that the resultant citation list will look like:
[1] Article 1 [2] Article 2 [3] Article 3 ...
