On peut réaliser cette page avec tikz en utilisant ses options **remember picture et overlay**.
C'est toute une théorie : je t'envois un code exemple que nous allons décortiquer ligne par ligne si tu le souhaites.
\documentclass[a4paper,12pt,DIV50]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage[french]{babel}
\definecolor{bleuLille1}{RGB}{022,119,184}
\begin{document}
% cadre
\begin{tikzpicture}[remember picture, overlay]
\begin{scope}[shift={(current page.south west)}]
\draw[draw=bleuLille1,fill=bleuLille1] (-2,0) rectangle (4,32);
\end{scope}
\end{tikzpicture}
% unité
\begin{tikzpicture}[remember picture, overlay]
\begin{scope}[shift={(current page.south west)}]
\draw (1,20) node[rotate=90] {\sffamily \LARGE \color{white}\textbf{MASTER de Technologie \LaTeX iène}};
\draw (2.5,20) node [rotate=90,above] {\sffamily \LARGE \color{white}\textbf{Mention : Beaux textes, images et PAO}};
\draw (3.5,20) node [rotate=90,above] {\sffamily \LARGE \color{white}\textbf{Spécialité : FICHES}};
\end{scope}
\end{tikzpicture}
% Le titre
\begin{tikzpicture}[remember picture, overlay]
\begin{scope}[shift={(current page.north west)}]
\draw (12,-3.5) node {\sffamily \Huge \color{bleuLille1}\textbf{Les fiches de Bébert :}};
\draw (12,-5) node {\sffamily \Huge \color{bleuLille1}\textbf{pour apprendre \LaTeX}};
\draw (12,-6.5) node {\sffamily \Large \color{bleuLille1}\textbf{Nombreux exemples avec des vrais morceaux de code}};
\end{scope}
\end{tikzpicture}
% Auteur
\begin{tikzpicture}[remember picture, overlay]
\begin{scope}[shift={(current page.north west)}]
\draw ((12,-10) node {\sffamily \Large \color{bleuLille1}\textbf{Bébert}};
\draw ((12,-11) node {\sffamily \Large \color{bleuLille1}\textbf{Le-Roi-de-la-Fiche}};
\draw (12,-13) node {\sffamily \color{bleuLille1}\textbf{Année 2012 -- 2013}};
\end{scope}
\end{tikzpicture}
% Les bulles
\begin{tikzpicture}[remember picture, overlay]
\begin{scope}[shift={(current page.south west)},shift={(7,3)},scale=1.5]
\shade[ball color=bleuLille1,opacity=.6] (0,0) circle (10ex);
\shade[ball color=bleuLille1,opacity=.8] (1.7,1) circle (5ex);
\shade[ball color=bleuLille1,opacity=.8] (1.5,3) circle (2ex);
\shade[ball color=bleuLille1,opacity=.5] (-0.5,3) circle (1ex);
\shade[ball color=bleuLille1,opacity=.8] (1,4) circle (1ex);
\shade[ball color=bleuLille1,opacity=.6] (3.5,2.5) circle (2ex);
\shade[ball color=bleuLille1,opacity=.8] (2.5,4.5) circle (4ex);
\shade[ball color=bleuLille1,opacity=.5] (3,4) circle (3ex);
\shade[ball color=bleuLille1,opacity=.8] (4.5,4.5) circle (3ex);
\shade[ball color=bleuLille1,opacity=.5] (5.1,4.7) circle (2ex);
\shade[ball color=bleuLille1,opacity=.8] (5,6) circle (1.5ex);
\shade[ball color=bleuLille1,opacity=.6] (3.5,5.5) circle (2ex);
\shade[ball color=bleuLille1,opacity=.8] (5,3) circle (1ex);
\end{scope}
\end{tikzpicture}
% Tuteur
\begin{tikzpicture}[remember picture, overlay]
\begin{scope}[shift={(current page.south west)}]
\draw (16,3) node {\sffamily \Large \color{bleuLille1}\textbf{Tuteur universitaire}};
\draw (16,2) node {\sffamily \Large \color{bleuLille1}\textbf{La communauté du libre}};
\end{scope}
\end{tikzpicture}
% logo
\begin{tikzpicture}[remember picture, overlay]
\begin{scope}[shift={(current page.south west)}]
\draw (2,3.5) node {\color{white}\bfseries\Huge \LaTeX};
\draw (2,1.2) node {\includegraphics[scale=.2]{example-image-A}};
\end{scope}
\end{tikzpicture}
\end{document}
![alt text][1]
<img src="/upfiles/pdg-1.png" style="width: 100%;"/>
Je n'arrive pas à bien montrer le rendu de la compilation. je te demande donc de compiler ce code et de manifester toutes tes préoccupations.
[1]: https://texnique.fr/osqa/upfiles/pdg-1.png