我几乎完成了 Springer 文章的 TeXing 工作,但在使用时\authorrunning
遇到了问题。我下载了这个:\titlerunning
llncs
ftp://ftp.springernature.com/cs-proceeding/llncs/llncs2e.zip并按照示例创建我自己的文章。但是,不知道为什么,我无法在文章的每一页顶部看到作者和标题。这是一个 MWE,我只是剪切了我的文章内容,但仍然“不起作用”。看一看:
\documentclass{llncs}
\usepackage{makeidx}
\usepackage{floatrow}
\usepackage{fancyhdr}
\captionsetup[lstlisting]{format=listing,labelfont=white,textfont=white}
\floatsetup[table]{capposition=top}
\floatsetup[figure]{capposition=bottom}
\newcommand{\keywords}[1]{\par\addvspace\baselineskip
\noindent\keywordname\enspace\ignorespaces#1}
\pagestyle{fancy}
\makeatletter
\let\runauthor\@author
\let\runtitle\@title
\makeatother
\lhead{\runauthor}
\rhead{\runtitle}
\begin{document}
\frontmatter
\pagestyle{headings}
\mainmatter
\title{my title}
\titlerunning{my title}
\author{author1 name\inst{1} and author2 name\inst{1,2}}
\authorrunning{author1 name}
\institute{University 1 \\
\email{[email protected]}
\and
University 2 \\
\email{[email protected]}
}
\maketitle
\begin{abstract}
....
\end{abstract}
\section{Introduction}
...
\newpage
\section{Introduction}
...
\newpage
\section{Introduction}
...
\newpage
\end{document}