章节标题页码

章节标题页码

我知道这已经涵盖了,但我找不到任何我见过的可行的解决方案。我的论文的页码在右上方,但每章的第一页应该在底部中间。我尝试使用 ERT(在 LYX 中),并在章节标题后\thispagestyle{plain}加载\usepackage{sectsty}并使用。\chapterfont{\pagestyle{plain}}

我在看修改纯文本页面样式以及关于 更改书籍每章首页的页码位置页码位置

我正在使用来自的课程科罗拉多大学博尔德分校

编辑:我不去 CU,但我正尝试使用该课程来完成我的论文。

答案1

如果您使用 Koma-Script,您可以使用该scrpage2包,然后定义自己的样式scrheadingsscrplain请参阅 Koma-Script 手册)。然后,您可以将它们分配给除章节页面之外的所有页面,或专门分配给章节页面:

\renewcommand*{\chapterpagestyle}{scrplain}

答案2

我确实得到了

\usepackage{fancyhdr}
\fancyhf{}  % Delete current setting for header and footer

\fancypagestyle{main}{% page style for normal pages
  \fancyhfoffset[R]{0.5in}
  \fancyhead[R]{\thepage}
  \renewcommand{\headrulewidth}{0pt}
  \renewcommand{\footrulewidth}{0pt}
}

\fancypagestyle{plain}{
  \fancyhfoffset[R]{0.25in}
  \fancyhead{}  % Get rid of headers and footers on plain pages...
  \fancyfoot[C]{\thepage}
  \renewcommand{\headrulewidth}{0pt}  % ...and of the lines
  \renewcommand{\footrulewidth}{0pt}
}

\fancypagestyle{empty}{
  \fancyhead{}  % Get rid of headers and footers on empty pages...
  \fancyfoot{}
  \renewcommand{\headrulewidth}{0pt}  % ...and of the lines
  \renewcommand{\footrulewidth}{0pt}
}

与任何正文之前以及每个章节标题之后的操作一样\pagestyle{main}ERT\thispagestyle{plain}ERT

谢谢meho_r

相关内容