Graphics, Figures & Tablesfancyhdr question

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
renato07
Posts: 12
Joined: Sat Feb 07, 2015 8:37 pm

fancyhdr question

Post by renato07 »

Hi,
I would add an header on my page, made by 3 images: 1 left. 1 center, one right.
One people tells me to use this code that I add on my .tex file in this way:

Code: Select all

\documentclass{article}
\usepackage{graphicx} % Required for inserting images
\usepackage{fancyhdr}
  \fancyhead[C]{}
 \fancyhead[L]{%
   \rlap{\includegraphics[width=200mm,height=39mm]{banner_corto_completo_blu.jpg}}%
   \includegraphics[width=80mm,height=39mm]{wepik-export-20240319220855HA4H.jpeg}}
 \fancyhead[R]{\includegraphics[width=80mm,height=39mm]{wepik-export-20240319220855HA4H.jpeg}}


    \pagestyle{fancy}       
       \par

    \pagestyle{fancy}
\begin{document}

%\maketitle

\section{Introduction}

\end{document}
but how you can see, the right picture goes over the background.
He tells me to use fancy[C] without parameter, because the order to put images with fancyhdr is: Left, Center, Right.
But in the way I use on my code I obtain that the fancyhdr [R] image, overlap the background I've put on fancyhdr[L].

How can I have one image as background and the other two to left and right that overlap the background

Maybe I not wrote it very clearly...Ask me if you need clarification

Thank you

Renato

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Bartman
Posts: 366
Joined: Fri Jan 03, 2020 2:39 pm

fancyhdr question

Post by Bartman »

Please link your crossposts.
Post Reply