KOMA-Script 标题页眉和页脚

KOMA-Script 标题页眉和页脚

我有由 fancyhdr 创建的标题页页眉和页脚,我正在尝试用 koma-script 解决方案替换它。

我尝试了 scrlayer-headings,但就是无法让 koma-script 在 titlepage 环境中打印页眉或页脚。它适用于除 titlepage 之外的所有其他页面。

Fancyhdr 风格

\fancypagestyle{titlepage_style_ru}{
    \fancyhf{}
    \renewcommand{\headrulewidth}{0pt}
    \chead{<some text>}
    \cfoot
    { \parbox[b]{\textwidth}{\centering \opt@title@city@ru\\ \opt@title@year@ru} }
}

我是这样设置的

\begin{titlepage}
    \thispagestyle{titlepage_style_ru}
     ....

是否有可能在 koma-script 中实现与 titlepage 相同的行为?

以下是完整的 WE

答案1

请参阅以下 MWE

\documentclass{scrreprt}

\usepackage[english]{babel}
\usepackage{blindtext} % dummy text

\usepackage{scrlayer-scrpage} % instead of fancyhdr
\ihead{ihead}
\ohead{ohead}
\chead{chead}
\ifoot{ifoot}
\cfoot{\pagemark}
\ofoot{ofoot}


\begin{document}

\begin{titlepage}
  \thispagestyle{scrheadings}
  \Huge This is a title page
\end{titlepage}

\tableofcontents

\Blinddocument
\end{document}

给出以下标题页:

封面

相关内容