我正在尝试修改论文的页面布局。我想在右上角显示章节编号和章节标题左上角是页码。
使用以下内容:
\usepackage{fancyhdr}
\begin{document}
\pagestyle{fancy}
\lhead{\thesection}
\chead{}
\rhead{\thepage}
\lfoot{}
\cfoot{}
\rfoot{}
我得到了预期的结果。但是我想添加部分名称。我尝试过:
\pagestyle{fancy}
\lhead{\thesection}{thesectiontitle}
\chead{}
\rhead{\thepage}
\lfoot{}
\cfoot{}
\rfoot{}
但当然它没有起作用。我认为它需要更多的编程知识,但到目前为止,我只有一个基本的 Latex 教程,我找不到有用的信息。提前感谢您的任何建议
答案1
(基于先前的评论。)
将此内容添加到序言中
\renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}}
然后\lhead
按以下方式更改
\lhead{\rightmark}
似乎已经解决了这个问题。