双倍行距会移动我的页码

双倍行距会移动我的页码

我正在使用 KOMA-Script 报告scrreprt排版我的博士论文,研究生院要求正文为双倍行距,页码位于右上方。当我启用双倍行距时,页码会向下移动一点。我该如何解决这个问题?

以下是重现该问题的 MWE:

\documentclass[12pt, letterpaper]{scrreprt}

\usepackage{setspace}

\usepackage{scrpage2}
\pagestyle{scrheadings}
%this code clears the header/footer
\clearscrheadfoot
%then puts the page number in the top right
\rohead[\pagemark]{\pagemark}

\begin{document}
\chapter{ch1}
hello
\chapter{ch2}
\doublespacing
hello
\end{document} 

答案1

添加\setstretch{1}标题似乎有帮助:

\makeatletter
\g@addto@macro\headfont{\setstretch{1}}
\makeatother

相关内容