LNCS 书目问题

LNCS 书目问题

我正在使用 LNCS 模板,我想在我的论文中有两个不同的参考书目。第一个叫做“参考“第二个”在线参考“。为了达到这个效果,我创建了两个单独的参考书目。

两个书目必须是清楚的,我假装它们有一个连续的枚举,或者不同的枚举样式。

这是我目前的书目: 在此处输入图片描述

在线参考资料,我希望枚举从6号,或者使用不同的枚举如“罗马风格”“I”。

有一些代码:

\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}

我尝试使用不同的风格,但没有成功。请帮忙!

答案1

以下是如何使用关联你提到:

\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} 

在此处输入图片描述

相关内容