标题:当 ohead 为多行时,ihead 向上移动。如何将两者对齐在同一底层

标题:当 ohead 为多行时,ihead 向上移动。如何将两者对齐在同一底层

我在我的页面中添加了 ohead 和 ihead,如下所示。ohead是多行的。因此,i head 向上移动到了 headsepline 上方。如何将其带回 headsepline

\documentclass[]{scrartcl}
\usepackage[automark,headsepline=true,footsepline=false]{scrlayer-scrpage}
\usepackage{blindtext}
\usepackage{xcolor}
\color[RGB]{84,84,84}
\ohead{\onehalfspacing \upshape PUR\hspace*{3mm}\linebreak 5x[16/16][1/1]\hspace*{3mm}}
\ihead{\upshape \hspace{3mm}[17-20/44][1/6][1-2/2][23-26/50][4-7/12]}
\addtokomafont{pagehead}{\footnotesize}
\begin{document}
\KOMAoptions{paper=432pt:328.70039pt,paper=landscape}
\recalctypearea
\blindtext
\end{document}

在此处输入图片描述

答案1

使用两个tabulars,您可以调整\ihead以拥有一条空白的顶线,并使其底部对齐。

\documentclass[]{scrartcl}
\usepackage[automark,headsepline=true,footsepline=false]{scrlayer-scrpage}
\usepackage{blindtext}
\usepackage{xcolor}
\usepackage{setspace}
\color[RGB]{84,84,84}
\ohead{\begin{tabular}{@{}r@{}}PUR\\5x[16/16][1/1]\end{tabular}\hspace{3mm}}
\ihead{\hspace{3mm}\begin{tabular}{@{}l@{}}\\\relax[17-20/44][1/6][1-2/2][23-26/50][4-7/12]\end{tabular}}
\setkomafont{pagehead}{\normalfont\footnotesize\onehalfspacing}
\begin{document}
\KOMAoptions{paper=432pt:328.70039pt,paper=landscape}
\recalctypearea
\blindtext
\end{document}

在此处输入图片描述

相关内容