标题中的章节和小节

标题中的章节和小节

我希望将当前章节和子章节放在页眉中,并将页码放在页脚的中心。

但是,如果同一页面上有两个或多个子部分,则不会显示任何子部分。我尝试了这里的很多提示和 Google 上的很多提示,但都没有帮助。

我的课程是文章,一页一页。

答案1

标题由左、右和中组成。所以我不确定这是否可行。我猜你可以创建一个新的命令,例如\newcommand{\R}{\section{R}},但我不确定这是你要找的。我在以下示例中对该部分使用了 \Huge 命令。

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\pagestyle{headings}
\usepackage{fancyhdr}

\pagestyle{fancy}
\fancyhf{}
\rhead{\Huge{Section}}
\lhead{Guides and tutorials}
\cfoot{Page \thepage}

\begin{document}

\noindent Hello, here is some text without a meaning.  This text should 
show what a printed text will look like at this place.  If you 
read this text, you will get no information.  Really?  Is there 
no information?  


\end{document}

相关内容