如何避免每页上重复的徽标被覆盖?

如何避免每页上重复的徽标被覆盖?

我想要一个模板,其中我们的研究所徽标、网站和赞助商徽标在页眉中重复出现在每一页上,并且文本不会与徽标重叠。到目前为止,我已经设法让徽标在每一页上重复出现,但遗憾的是还没有找到避免重叠的方法。

我已经花了几个小时在这上面,如果有人能帮助我我将非常感激!

这是我目前拥有的代码:

\documentclass[12pt, a4paper]{article}
\usepackage[a4paper ,top=2cm,bottom=2cm,left=2.5cm,right=2.5cm,marginparwidth=1.75cm]{geometry}

\usepackage{scrlayer-fancyhdr}
\usepackage{floatflt}

\usepackage{graphicx,mwe}
\pagestyle{fancy}
\fancyhf{}

\lhead{title}
\rhead{\thepage~~~~~~~~~~~~~~~~~~~~}

\IfPackageAtLeastTF{fancyhdr}{2019/03/21}{

\DeclarePageStyleAlias{@fancy}{f@nch@fancycore}
}{

\DeclarePageStyleAlias{f@nch@fancycore}{@fancy}
}
\DeclareNewLayer[{

  background,topmargin,contents={\hfill

    \begin{floatingfigure}[r]{5.cm}\includegraphics[width=4.cm]{example-image-a}

\\\textcolor{white}{aaa}\footnotesize{www.examplesite.com}

    \\\textcolor{white}{aaaaii}\includegraphics[width=2.7cm]{example-image-b}

\end{floatingfigure}}}]{Logo.PNG}

\AddLayersToPageStyle{@fancy}{Logo.PNG}

\usepackage{blindtext,xcolor}

\begin{document}

\blinddocument




\end{document}

提前非常感谢您!

截图输出

相关内容