修改 svmono 类中的页码位置

修改 svmono 类中的页码位置

正如标题所示,我想知道我应该如何修改该类svmono以便使页码居中(现在它们位于页面的左上角/右上角)。

欢迎任何反馈。
提前感谢您的时间。

答案1

您必须重新定义bchapheadings页面样式。

\documentclass[envcountsame,envcountchap]{svmono}
\usepackage{kantlipsum}

\makeatletter
\def\ps@bchap{%
  \let\@oddhead\@empty\let\@evenhead\@empty
  \def\@oddfoot{\reset@font\small\hfil\thepage\hfil}%
  \let\@evenfoot\@oddfoot
}

\def\ps@headings{%
  \let\@mkboth\markboth
  \def\@oddfoot{\reset@font\small\hfil\thepage\hfil}%
  \let\@evenfoot\@oddfoot
  \def\@evenhead{\runheadsize\runheadstyle\hfil\leftmark}%
  \def\@oddhead{\runheadsize\runheadstyle\rightmark\hfil}%
  \def\chaptermark##1{%
    \markboth{%
      {\if@chapnum\thechapter\thechapterend\hskip\betweenumberspace\fi ##1}%
    }{%
      {\if@chapnum\thechapter\thechapterend\hskip\betweenumberspace\fi ##1}}%
    }%
  \def\sectionmark##1{%
    \markright{%
      {\ifnum\c@secnumdepth>\z@\thesection\seccounterend\hskip\betweenumberspace\fi ##1}%
    }%
  }%
}
\makeatother
\pagestyle{headings}


\begin{document}

\chapter{Test}

\kant[1-10]

\end{document}

相关内容