I have an png image, I would like to integrate it into a latex leaflet.
I would like to put this image at the corner of the page as a background. But I can't get it to go outside of the margins.
Here is my code:
\documentclass[10pt,foldmark,notumble]{leaflet}
\renewcommand*\foldmarkrule{.3mm}
\renewcommand*\foldmarklength{5mm}
\usepackage{polyglossia}
\setmainlanguage{english}
\setmainfont{Times New Roman}% <-- For English: Latin script here!
\usepackage{lipsum}
\usepackage{comment}
\usepackage{float}
\newcommand*\defaultmarker{\textsuperscript\textasteriskcentered}
\CutLine{1}% Dotted line without scissors
\CutLine{6}% Dotted line without scissors
\begin{document}
%\begin{center}
\vspace*{-0.8in}
\hspace*{-0.8in}
\begin{figure}[H]
{\includegraphics{drawing.pdf}} %
\end{figure}
This is the title
\section{Abstract}
This is the abstract which is good.
\section{Background}
\lipsum[2-4]
\section{Objectives}
\lipsum[5-7]
\section{Techniques}
\lipsum[8-10]
\section{Results}
\lipsum[11]
% \includegraphics[width=0.9\columnwidth]{esempio}
\lipsum[12-13]
\section{Conclusions}
\lipsum[14]
\section{Acknowledgements}
\lipsum[1]
\section{Contact details}
Nome Cognome {\tt nome.cognome@studium.unict.it}
\end{document}
Would it be also possible to write on top of the image? (i.e. consider it as a background?)

