scrlayer-scrpage 隔页上的页面样式

scrlayer-scrpage 隔页上的页面样式

我想更改插页的页面样式。我当前的示例:

\documentclass{scrbook}
\usepackage[headsepline=1pt]{scrlayer-scrpage}
\ohead{\pagemark} 
\ihead{\headmark} 
\chead{} 
\ofoot{}\ifoot{}\cfoot{}
\usepackage{blindtext}

\begin{document}
    \Blinddocument
    \clearpage
    \blindtext
    \cleardoublepage
    \Blinddocument
\end{document}

第 18 页是插页,其页面样式为空。我想将页面样式更改为 scrheadings,这样我的页眉就会与其他页面相同。我很确定我之前看到过一个选项,但现在我在文档中找不到任何东西。

答案1

插页的页面样式可以通过以下方式设置

\KOMAoptions{cleardoublepage=scrheadings}

相关内容