在 lncs 格式的页眉中,偶数页有作者姓名,奇数页有论文标题。我想将论文标题更改为章节名称。例如,在奇数页页眉中,我希望显示章节名称和页码。如何更改?
答案1
您可以更新\sectionmark
- 使用时负责放置标记的宏\section
。例如,添加
\renewcommand{\sectionmark}[1]{\markright{#1}}
将章节标题放在序言的奇数(右侧)标题中。
这是一个完整的例子:
\documentclass[runningheads]{llncs}
\usepackage{lipsum}
\renewcommand{\sectionmark}[1]{\markright{#1}}
\begin{document}
\mainmatter % start of an individual contribution
\title{A title}
\author{An author}
\institute{An institute}
\maketitle
\begin{abstract}
This is an abstract.
\end{abstract}
\section{A section}
\lipsum[1-17]
\subsection{A subsection}
\lipsum[1-17]
\end{document}