[Tex/LaTex] Picture in top left corner of the frontpage

templatestitles

I would like to place a sample picture/logo only in the top left corner of my front page for my thesis. I am using the Overleaf thesis doctoral template

(https://www.overleaf.com/latex/templates/template-for-a-masters-slash-doctoral-thesis/mkzrzktcbzfl)

I tried various ways with different packages, but they all seemed to give the error ("Option clash") and couldn't figure how to work around it. Is there a way to do it with the current packages for my template?

Thanks!

Best Answer

You can place a picture at a specified spot on a page using tikz like this:

\documentclass[]{article}

\usepackage{tikz}
\usepackage{blindtext}

\begin{document}
\blindtext
    \begin{tikzpicture}[remember picture,overlay]
    \node[anchor=north west,yshift=-1.5pt,xshift=1pt]%
        at (current page.north west)
        {\includegraphics[height=5mm]{example-image}};
    \end{tikzpicture}

\blindtext
\end{document}

enter image description here

Related Question