KOMA Script 页脚行高

KOMA Script 页脚行高

如何增加页脚文本与分隔线的距离以使其看起来像页眉?

您可以看到页脚文本到行的距离小于页眉的距离......

在此处输入图片描述

答案1

尝试这个:

\documentclass[]{scrartcl}
\usepackage{calc}
\usepackage[headsepline,footsepline]{scrpage2}
\clearscrheadings
\ihead{Header}
\ifoot{\rule{0pt}{\ht\strutbox+\dp\strutbox}Footer}
\pagestyle{scrheadings}
\begin{document}
\mbox{}
\end{document} 

答案2

这是类似问题的答案

\documentclass{scrbook}
\usepackage{blindtext}

\usepackage[
    footsepline=0.25pt, % to show the footwidth
]{scrlayer-scrpage}

% shift lines up:
\ModifyLayer[addvoffset=-.6ex]{scrheadings.foot.above.line}
\ModifyLayer[addvoffset=-.6ex]{plain.scrheadings.foot.above.line}

\begin{document}
\blindtext
\end{document}

相关内容