0

I'm using the LNCS template, and I want to have two distinct bibliography's in my paper. The first one is called "References" and the second "Online References". I create two separate bibliography's for the effect.

The two bibliographies must be distinct, and I pretend they had a continuous enumeration, or different enumeration styles.

This is my current bibliography: enter image description here

In online references, I want the enumeration starting on number 6, or using different enumeration like "roman style" "I".

There's some code:

\begin{thebibliography}{}

\bibitem {ia4games}
Millington, Ian, and John David Funge. Artificial Intelligence for Games. Burlington, MA: Morgan Kaufmann/Elsevier, 2009. Print.
 ...
\end{thebibliography}

\renewcommand\refname{Online References}

\begin{thebibliography}{}

\bibitem{video2}
"Video: Building the AI for Hearthstone." Gamasutra. GDC's Vault AI Summit, 25 Aug. 2014. Web. 7 Apr. 2016.

\end{thebibliography}

I tried to use different styles, but without success. Please healp!

moewe
  • 175,683
dsdsad
  • 103

1 Answers1

2

Here is how to use the indications of the link you mention:

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}

\begin{document}

\begin{thebibliography}{9}

  \bibitem {ia4games}
  Millington, Ian, and John David Funge. Artificial Intelligence for Games. Burlington, MA: Morgan Kaufmann/Elsevier, 2009. Print.
  ...
\end{thebibliography}

\renewcommand\refname{Online References}
\begin{thebibliography}{9}
  \makeatletter
  \addtocounter{\@listctr}{5}
  \makeatother

  \bibitem{video2}
  "Video: Building the AI for Hearthstone." Gamasutra. GDC's Vault AI Summit, 25 Aug. 2014. Web. 7 Apr. 2016. \end{thebibliography}

\end{document} 

enter image description here

Bernard
  • 271,350
  • llncs, like the standard classes, uses enumiv for the bibliography. The argument to \begin{thebibliography} should not be empty. – egreg Apr 25 '16 at 08:09
  • @egreg: Initially, I tried with enumiv, but it didn't work. What happens if the argument is empty, as in the O.P.'s code? Doesn't LaTeX use a default value? – Bernard Apr 25 '16 at 08:54
  • The argument is used for setting the hanging indentation; as you see, it is wrong in your output. I tried \addtocounter{enumiv} with llncs.cls and it works. – egreg Apr 25 '16 at 08:58
  • @egreg: I didn't notice it. Thanks for pointing it. It's corrected now. – Bernard Apr 25 '16 at 09:02