关于 llncs2e 课程的一些问题

关于 llncs2e 课程的一些问题

首先,我想说,我需要一个了解llncs2eSpringer 课程的人。

我正在准备一篇有llncs2e课程的论文。解释如下:

http://www.springer.com/computer/lncs/lncs+authors?SGWID=0-40209-0-0-0

首先让我告诉你我到目前为止所做的事情:

  • 我下载了llncs2e.zip
  • 然后我下载了typeinst.zip
  • 复制typeinst.tex到目录中llncs2e(我希望这是正确的)
  • 我把我的论文打到了typeinst.tex
  • 现在,我完成了我的论文。

1)然而,在说明部分,他们说

我们希望在在线版本中添加您手稿的超链接,因此我们建议使用 LaTeX2e 来准备您的照相排版手稿,以及相应的 Springer 类文件。

这里,什么是手稿它们是什么意思超级链接

2)那里是一个名为的文件svmono.zip。他们说这是给我们的专著。我必须以某种方式使用它吗?什么是专著

3)在 typeinst.pdf(也是示例论文),他们说

请使用命令\label\ref进行交叉引用,使用命令\bibitem\cite进行参考书目引用,以便我们在这些地方创建超链接

再说一遍。pdf 文件中的超链接是什么?

4)在他们的例如 tex 文件,他们建议使用比博特如下:

\begin{thebibliography}{4}

\bibitem{jour} Smith, T.F., Waterman, M.S.: Identification of Common Molecular
Subsequences. J. Mol. Biol. 147, 195--197 (1981)

\bibitem{lncschap} May, P., Ehrlich, H.C., Steinke, T.: ZIB Structure Prediction Pipeline:
Composing a Complex Biological Workflow through Web Services. In: Nagel,
W.E., Walter, W.V., Lehner, W. (eds.) Euro-Par 2006. LNCS, vol. 4128,
pp. 1148--1158. Springer, Heidelberg (2006)

\bibitem{book} Foster, I., Kesselman, C.: The Grid: Blueprint for a New Computing
Infrastructure. Morgan Kaufmann, San Francisco (1999)

\bibitem{proceeding1} Czajkowski, K., Fitzgerald, S., Foster, I., Kesselman, C.: Grid
Information Services for Distributed Resource Sharing. In: 10th IEEE
International Symposium on High Performance Distributed Computing, pp.
181--184. IEEE Press, New York (2001)

\bibitem{proceeding2} Foster, I., Kesselman, C., Nick, J., Tuecke, S.: The Physiology of the
Grid: an Open Grid Services Architecture for Distributed Systems
Integration. Technical report, Global Grid Forum (2002)

\bibitem{url} National Center for Biotechnology Information, \url{http://www.ncbi.nlm.nih.gov}

\end{thebibliography}

但是,我已经创建了自己的typeinst.bib文件并在我的 tex 文件末尾简单地添加了以下行:

\bibliography{typeinst}{}
\bibliographystyle{plain}

它可以与\cite{}命令一起使用,但我想知道他们建议的格式和这个超链接之间是否有关系?我想知道他们是否打算创建一个用于单击引文的超链接[4]?我可以像以前一样使用 bibtex 吗?

5)输入他们说,我们论文中的伪代码;

\subsection{Program Code}

Program listings or program commands in the text are normally set in
typewriter font, e.g., CMTT10 or Courier.

\medskip

\noindent
{\it Example of a Computer Program}
\begin{verbatim}
program Inflation (Output)
  {Assuming annual inflation rates of 7%, 8%, and 10%,...
   years};
   const
     MaxYears = 10;
   var
     Year: 0..MaxYears;
     Factor1, Factor2, Factor3: Real;
   begin
     Year := 0;
     Factor1 := 1.0; Factor2 := 1.0; Factor3 := 1.0;
     WriteLn('Year  7% 8% 10%'); WriteLn;
     repeat
       Year := Year + 1;
       Factor1 := Factor1 * 1.07;
       Factor2 := Factor2 * 1.08;
       Factor3 := Factor3 * 1.10;
       WriteLn(Year:5,Factor1:7:3,Factor2:7:3,Factor3:7:3)
     until Year = MaxYears
end.
\end{verbatim}
%
\noindent

在这里,我是否必须逐字使用,或者我可以使用斜体格式?看: {\it Example of a Computer Program}

我是否必须用 Pascal 语言创建伪代码?我问这个问题只是为了确保万无一失。

提前致谢。

相关内容