在首页之后的第一页上,降低文本高度和增加页脚跳跃不起作用

在首页之后的第一页上,降低文本高度和增加页脚跳跃不起作用

我想在除首页之外的所有页面底部添加图形。我使用 \addtolength{} 减小了文本高度并增加了页脚跳跃,但这对首页(首页之后)没有任何影响。这是我的 MWE:

\documentclass{article}

\usepackage[demo]{graphicx}
\usepackage{fontspec}
\usepackage{eso-pic}
\usepackage{lipsum} % just for the example
\usepackage[margin=2cm]{geometry}

\title{Lorem ipsum}

\begin{document}
\maketitle

\clearpage

\makeatletter
\addtolength{\textheight}{-68mm}
\addtolength{\footskip}{68mm}

\AddToShipoutPicture{
            \setlength{\@tempdimb}{.5\paperwidth}
            \setlength{\@tempdimc}{.21\paperheight}
            \setlength{\unitlength}{1pt}
            \put(\strip@pt\@tempdimb,\strip@pt\@tempdimc){
       \makebox(0,0) {
            \setlength{\fboxsep}{2mm}
            \fbox{
               \includegraphics{Some-logo.jpg}
            }
       }
   }
}

\begin{center}
{\huge\sc chaptertitle}
\vspace{8mm}
\end{center} 

\lipsum
\lipsum
\lipsum
\end{document}

我对 LaTeX 的了解仍然很少。任何帮助或建议都非常感谢!

相关内容