考虑一下这个 MWE,为什么第 1 页上的页脚规则位置与其余页面不同?同样与页脚有关,如何将页脚文本向下移动而不影响规则或页面上其他对象的位置。
整体页面布局
第 1 页
注意规则相对于灰色矩形和示例图像的位置。
第2页
代码
\documentclass[a4paper,11pt]{article}
\usepackage[left=1.5cm,top=2.5cm,right=3.5cm,bottom=3.2cm,footskip=1.1cm]{geometry}
\usepackage{graphicx}
\usepackage{blindtext} % Dummy text
% TIKZ
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{tikzpagenodes}
% CUSTOM HEADERS AND FOOTERS
\usepackage{fancyhdr}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0.5pt}
\pagestyle{fancy}
\rhead{\today}
\lhead{}
\cfoot{}
\lfoot{SOME TEXT GOES HERE}
\rfoot{mywebsite.com
\begin{tikzpicture}[remember picture,overlay]
\node [inner sep=0cm,outer sep=0,yshift=1.75cm,xshift=8.75cm] (picture)
at (current page.south){\includegraphics[height=1.5cm,width=1.5cm]{example-image-a}};
\fill [gray,opacity=0.1] ($ (picture) + (-0.75,0.75+0.2) $) rectangle ($ (picture) + (0.75,0.75+0.2+29.7-2-1.5-0.2) $) % 29.7cm-2cm-1.5cm-0.2cm
node [text opacity=0.5 , text=black , rotate=-90, yshift=-0.75cm, xshift=1.8cm] {\Huge Testing};
\end{tikzpicture}}
\begin{document}
\Blinddocument
\end{document}
答案1
您的 MWE 会发出警告,指出\headheight
尺寸太小。它指出,它会更改尺寸,但这样页面布局可能会不一致(或类似的话)。
\begin{document}
放置前
\setlength{\headheight}{14pt}
这使得您的 MWE 页面保持一致。
检查任何警告信息总是有用的---GOM。