scrreprt:控制页码相对于页边距的位置

scrreprt:控制页码相对于页边距的位置

我想将页码放在1 cm页面底部边框的正上方(边距和页面边框的中间),以及2 cm页面右侧边框的左上方(恰好在右边距上)。

\documentclass{scrreprt}
\usepackage[a4paper,
top=2cm,
bottom=2cm,
left=4cm,
right=2cm]{geometry}

\usepackage{lipsum} 

\begin{document}

\chapter{Chapter Title}

\lipsum[1-10]

\end{document}

这就是我要的

这就是我要的

答案1

\documentclass{scrreprt}
\usepackage[a4paper,
top=2cm,
bottom=1cm,
includefoot,
left=4cm,
right=2cm,
footskip=1cm]{geometry}
\usepackage{scrlayer-scrpage}
\rofoot*{\pagemark}
\cofoot*{}
\pagestyle{scrheadings}
\usepackage{lipsum} 

\begin{document}

    \chapter{Chapter Title}

    \lipsum[1-10]

\end{document}

在此处输入图片描述

相关内容