[Tex/LaTex] Sorting references, and displaying “References” instead of “Bibliography”

bibliographieslncssorting

In my \documentclass{llncs}, I use

\usepackage{hyperref}
\usepackage[sort]{natbib}

to sort the references of my document. While the above achieves sorting, the section entitled "Bibliography" appears at the end of the document, starting with a new page.

I would like to have the writing "References" immediately after the main body which ends in the first third of a page. So, the section "References" should start from there, and references should remain sorted in the main body.
In addition, I would like the sorted references to appear without a space after comma, e.g., [1,2,3], intead of [1, 2, 3].

How could this be achieved?

Best Answer

Do you mean the documentclass mentioned in the question multiple-authors-in-a-journal-style-llncs-document? Then follow please page 21 ff in the documentation llncsdoc.pdf. Try document class option [oribibl]. Without an complete MWE I or we can only guess. You will find on page 21:

There is a special BibTEX style for LLNCS that works along with the class: splncs.bst – call for it with a line \bibliographystyle{splncs}. If you plan to use another BibTEX style you are customed to, please specify the option [oribibl] in the documentclass line, like:

\documentclass[oribibl]{llncs}

This will retain the original LATEX code for the bibliographic environment and the \cite mechanism that many BibTEX applications rely on.

Related Question