文档每页自动添加页眉和页脚

文档每页自动添加页眉和页脚

我想要一个特定的页眉和页脚,它们会自动包含到我的文档中。我有以下 MWE(取自此处的另一个线程):

\documentclass{article}

\usepackage{graphicx,eso-pic}
\usepackage{lipsum}

\AddToShipoutPictureBG{%
  \AtPageUpperLeft{%
      \raisebox{-\height}{\includegraphics[width=0.2\paperwidth]{example-image-a}}
    }
  \AtPageLowerLeft{%
    \makebox[\paperwidth]{\includegraphics[height=2.6cm, width=0.7\paperwidth]{example-image-b}}
  }%
}

\begin{document}

\lipsum

\end{document}

我的问题是,标题中的图像具有我需要的尺寸(无论如何我都可以更改它),但我无法将其居中。对此有什么建议吗?谢谢

答案1

\makebox在标题中也使用:

\documentclass{article}

\usepackage{graphicx,eso-pic}
\usepackage{lipsum}

\AddToShipoutPictureBG{%
  \AtPageUpperLeft{%
      \makebox[\paperwidth]{\raisebox{-\height}{\includegraphics[width=0.2\paperwidth]{example-image-a}}}%
    }
  \AtPageLowerLeft{%
    \makebox[\paperwidth]{\includegraphics[height=2.6cm, width=0.7\paperwidth]{example-image-b}}%
  }%
}

\begin{document}

\lipsum

\end{document}

在此处输入图片描述

相关内容