我向使用 LNCS 模板的会议提交了一篇论文,但老实说,我不知道如何在照相排版论文中插入作者和机构信息。我读过 typeinst 文档,但模板中没有标签\author
,如果有人能帮忙,我将不胜感激。
答案1
该类llncs
是从中派生出来的,article.cls
因此它确实有\author
宏。它\institute
也提供了一个宏,但\date
显然没有使用。
\documentclass{llncs}
\author{Ann Elk (Mrs.) and Mr. Arthur Gumby (Brain Surgeon)}
\title{Theory of Brontosaurs}
\date{30th of February 2016}
\institute{Ministry of Silly Walks}
\usepackage{cleveref}
\begin{document}
\maketitle
\tableofcontents
\section{Theory on Brontosaurs} \label{theory}
\begin{enumerate}
\item Brontosaurs were large
\item Brontosaurs are thin at one end, thick in the middle and thin again on the other end.
\end{enumerate}
\section{Excavations of Brontosaurs} \label{excavations}
After we stated the theory in \cref{theory} we want to provide you with the most exciting rules of excavating a Brontosaur.
This is the basic strategy:
\begin{itemize}
\item Dig a hole
\item Throw away anything that does not really resemble a Brontosaur
\item In the very end you should have at least some parts of a Brontosaur
\end{itemize}
\section{Results} \label{results}
\backmatter
% Other stuff here
\end{document}