有fancyhdr
没有办法将标题限制为章节名称(忽略任何章节名称?)
从我之前的问题 [这里] 可以衍生出以下问题:1我想限制标题信息仅包含相应章节的名称。
我在这里放置了上一个问题中选定的答案的 MWE。
\documentclass[12pt, a4paper, twoside]{book}
\usepackage{fancyhdr}
\fancypagestyle{headings}{%
\cfoot{\page}
}
\pagestyle{headings}
\begin{document}
\chapter{introduction}
\section{description}
Hello. This is an example
\end{document}
这样,“描述”部分将不会出现在标题中,只有“简介”一章。
答案1
这是你想要的吗?
\documentclass[12pt, a4paper, twoside]{book}
\usepackage{fancyhdr}
\cfoot{\thepage}
\lhead[\leftmark]{}
\rhead[]{\leftmark}
\usepackage{lipsum}
\begin{document}\pagestyle{fancy}
\chapter{introduction}
\section{description}
\lipsum[1-20]
\end{document}