Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Add logo in very bottom right corner

I have been trying to insert a (transparent) logo in the bottom right corner in the background of my title page without affecting the text in Overleaf. Unfortunately, I haven’t found a similar use case and have tried many different options for quite some time, but it doesn’t work the way I need it to. Can someone please help me in this regard?

I would like it to look like this. As you can see, there is a logo inserted in the lower right corner.

enter image description here

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

You can add an image to the page background via the shipout/background hook. To make positioning easier, I’m using tikz in the following example:

\documentclass{article}

\usepackage{lipsum}
\usepackage{tikz}

\AddToHookNext{shipout/background}{
  \begin{tikzpicture}[remember picture, overlay,inner sep=0pt,outer sep=0pt,opacity=0.5]
  \node[anchor=south east] at ([xshift=3cm,yshift=-3cm]current page.south east) {
    \includegraphics[width=16cm]{example-image-duck}
  };
  \end{tikzpicture}
}

\begin{document}

\lipsum

\end{document}
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading