Using
\begin{tikzpicture}
\draw (0, 0) node[inner sep=0] {\includegraphics[width=\paperwidth]{kleurlabel}};
\draw (5.9,0) node (example-tabular) {
\begin{tabular}{rr}
\LARGE\color{white}\bfseries Faculteit Geneeskunde en \\
\LARGE\color{white}\bfseries Gezondheidswetenschappen \\
\end{tabular}
};
\end{tikzpicture}
in combination with \usepackage[left=2.5cm,right=1cm,top=2.5cm,bottom=0cm]{geometry} will print the image against the margin, thus 2.5 cm from the actual page border. How can I have it printed against the border of the page?
Thanks.
M.
Working example:
\documentclass[11pt,x11names]{report}
\usepackage[left=2.5cm,right=1cm,top=2.5cm,bottom=0cm]{geometry}
\usepackage[dutch]{babel}
\usepackage{graphicx}
\usepackage{tabularx}
\usepackage{tikz}
\renewcommand{\familydefault}{\sfdefault}
\usepackage[scaled=0.92]{helvet}
\begin{document}
\definecolor{blueXIIdark}{cmyk}{1,.8,.30,.05}
\definecolor{blueXIIlight}{cmyk}{.0,.30,1,.00}
\vspace{5cm}
\begin{tikzpicture}
\draw (0, 0) node[inner sep=0] {\includegraphics[width=\paperwidth]{kleurlabel}};
\draw (5.9,0) node (example-tabular) {
\begin{tabular}{rr}
\LARGE\color{white}\bfseries Faculteit Geneeskunde en \\
\LARGE\color{white}\bfseries Gezondheidswetenschappen \\
\end{tabular}
};
\end{tikzpicture}
\vspace{5cm}
\Huge\color{blueXIIdark} Hello world!
\vspace{7cm}
\large\color{black}
\begin{tabularx}{\textwidth}{Xr}
& \textbf{\Large Micha\"el Henrotte}\vspace{0.8cm}\\
Promotor: & Eerste bachelor in de geneeskunde \\
Prof. dr. V. Achternaam & UGent stamnummer 01404753\vspace{2cm}\\
& Academiejaar 2014--2015
\end{tabularx}
\vspace{1.5cm}
\noindent\makebox[\linewidth]{\color{blueXIIlight}\rule{30cm}{8pt}}
\end{document}
The image used:


