有没有办法在 amsart 标题上方添加标题(图像)

有没有办法在 amsart 标题上方添加标题(图像)

因此,在 amsart 中,默认情况下有一个页眉,但我希望在此页眉上方再添加一个“页眉”,以便我可以在每页的右上角放置一个图像。我也希望在页脚中也能这样做。但 fancyhdr 包与 amsart 现有的页眉/页脚冲突:

\documentclass{amsart}

\usepackage{lipsum}

\usepackage{fancyhdr}
\pagestyle{fancy}

\rhead{\includegraphics{example-image-a}}

\lfoot{This is Document ABC DEF GHI JKL MNO}

\begin{document}

\title{This is the title for Document ABC DEF GHI JKL MNO}
\maketitle

\lipsum

\end{document}

如您所见,页眉/页脚中的所有内容都重叠了。我希望图像更靠近右上方(但不接触角落),并希望左下角的页脚更靠近左下方(但不接触角落)。

答案1

以下是使用一些值来调整所需位置/尺寸的一种方法:

\documentclass{amsart}
\usepackage{graphicx}
\usepackage{lipsum}

\usepackage{fancyhdr}
\pagestyle{fancy}
%
%\rhead{\includegraphics{example-image-a}}
\rhead{%
    \begin{picture}(0,0)
    \put(40,25){\includegraphics[height=15mm]{example-image-a}}
    \end{picture}}

\lfoot{%
    \begin{picture}(0,0)
    \put(-100,-50){\includegraphics[height=15mm]{example-image-b}}
    \end{picture}
    This is Document ABC DEF GHI JKL MNO}

\begin{document}

    \title{This is the title for Document ABC DEF GHI JKL MNO}
    \maketitle

    \lipsum

\end{document}

相关内容