像 Word 中的边距和页眉/页脚

像 Word 中的边距和页眉/页脚

我在 MS Word 中有一个模板,其中页眉/页脚中有图像。图像宽度等于页面宽度,左右边距为 2 厘米。我不知道如何在 latex 中做到这一点...

这里您可以预览它在 Word 中的外观。蓝色是总页眉边距,黄色是图像

MS Word 模板

以类似的方式构建页脚。

答案1

您可以加载包scrlayer-scrpage并为页面顶部和底部的图片声明额外的图层。然后可以将这些图层添加到所有页面样式中。

\documentclass[a4paper]{article}
\usepackage[
    hmargin=2cm,
    vmargin=4cm,
    headsep=1em,% adjust the  vertical position of the header entry (e.g. section)
    footskip=2em% adjust the vertical position of the footer entry (e.g. page number)
]{geometry}
\usepackage{graphicx}

\usepackage[
    automark,% if you want to use section entries in the header/footer
    headwidth=paper,% if the header entries should also use the whole page width
    footwidth=head
]{scrlayer-scrpage}
\DeclareNewLayer[
    background,
    topmargin,
    mode=picture,
    contents=\putUL{\raisebox{-\height}{\includegraphics[width=\layerwidth,height=2.5cm]{example-image-A}}}
]{topmargin}
\DeclareNewLayer[
    background,
    bottommargin,
    mode=picture,
    contents=\putLL{\includegraphics[width=\layerwidth,height=2.5cm]{example-image-B}}
]{bottommargin}
\AddLayersToPageStyle{@everystyle@}{topmargin,bottommargin}

\clearpairofpagestyles
\cfoot*{\pagemark}% page number centred in footer
\chead{\headmark}% section entry centred in header

\ihead{inner}
\ohead{outer}

\usepackage{blindtext}
\begin{document}
\Blinddocument
\end{document}

在此处输入图片描述

相关内容