我正在尝试删除某一页的标题。我目前正在使用该命令,\thispagestyle{plain}
但它也会删除页码。有人知道如何删除标题而不删除页码吗?
非常感谢!
这是我目前的代码:
\documentclass[11pt,a4paper,twoside]{article}
\usepackage[headsepline,automark]{scrlayer-scrpage}
\clearpairofpagestyles
\ohead{\leftmark}
\ofoot{\pagemark}
\begin{document}
\section{Abstract}
fngf
%\markboth{<left heading text>}{<right heading text>}
\subsection{Abstract}
fngf
\newpage
\thispagestyle{plain}
dgdfbhdthnfghnrfgfgtfrdfvjdnlsedvglneas
\end{document}
答案1
\clearpairofpagestyles
清除两种样式scrheadings
和plain.scrheadings
¹。如果页码在两种样式中都应位于外部页脚中,请使用
\ofoot[\pagemark]{\pagemark}
或其简短版本
\ofoot*{\pagemark}
例子:
\documentclass[11pt,a4paper,twoside]{article}
\usepackage[headsepline,automark]{scrlayer-scrpage}
\clearpairofpagestyles
\ohead{\leftmark}
\ofoot*{\pagemark}% <- changed
\begin{document}
\section{Abstract}
fngf
\subsection{Abstract}
fngf
\newpage
\thispagestyle{plain}
dgdfbhdthnfghnrfgfgtfrdfvjdnlsedvglneas
\end{document}
¹是使用页面样式对时plain
的别名。plain.scrheadings
scrheadings