我正在尝试通过添加
\thispagestyle{普通}
理论上,它允许我仅显示页码,这正是我想要的。但是,它的\thispagestyle{plain}
工作原理与 完全相同\thispagestyle{empty}
。它给我一个没有页眉或页码的页面。如果我完全删除它,它会给我一个页眉和页码。我只需要页码
\newpage
\thispagestyle{plain}
\cleardoublepage
\begin{center}
\section*{STATUTORYD ECLARATION}
\end{center}
hereby declare that I have authored this thesis
\thispagestyle{plain}
\newpage
\thispagestyle{plain}
\cleardoublepage
\pagenumbering{roman}
\begin{center}
\section*{Abstract}
\end{center}
\thispagestyle{plain}
\addcontentsline{toc}{section}{Abstract}
\newpage
\thispagestyle{plain}
\cleardoublepage
\begin{center}
\section*{Acknowledgments}
\end{center}
\addcontentsline{toc}{section}{Acknowledgement}
\newpage
\thispagestyle{plain}
\cleardoublepage
\newpage
\thispagestyle{plain}
\begin{center}
\section*{Abbreviations}
\end{center}
\addcontentsline{toc}{section}{Abbreviations}
\newpage
\thispagestyle{empty}
\tableofcontents
\newpage
\thispagestyle{empty}
\listoffigures
\newpage
\thispagestyle{empty}
\listoftables
\newpage
\pagenumbering{arabic}
\setcounter{page}{1}
\section{Introduction} % (fold)
\label{sec:introduction}
套餐:
\documentclass[a4paper,twoside]{article}
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
% package for including graphics with figure-environment
\usepackage{graphicx}
% package for bibliography
\usepackage{cite}
% package for header
\usepackage{subcaption}
\usepackage[automark]{scrlayer-scrpage}
\usepackage{float}
\usepackage{listings}
\usepackage{comment}
\pagestyle{scrheadings}
\usepackage{afterpage}
\ohead[]{\today}
\cfoot[]{\pagemark}
\KOMAoptions{headsepline=.4pt:head}
答案1
可选参数\cfoot
设置页面样式的内容plain
。使用
\cfoot[\pagemark]{\pagemark}
或其简短版本
\cfoot*{\pagemark}
在普通页面上获取页码。