I'm writing a bachelor's thesis at the moment and having some problem with an image on the front page. Using documentclass srcbook, a4, twoside and looking for a simple way to get an image to fill the page width on the first page, any ideas? Also have text on the first page so need to change the margins only for the image. Have tried defining a new environment that I found in the forum here but can't get it to work or are there any easier way than changing margins?
This is the environment I've tested without any luck:
Code: Select all
\newenvironment{changemargin}{%
%\vspace{-\parskip}%
\begin{list}{}{%
\setlength{\topsep}{0pt}%
\setlength{\leftmargin}{0pt}%
\setlength{\rightmargin}{0pt}%
\setlength{\listparindent}{\parindent}%
\setlength{\itemindent}{\parindent}%
\setlength{\parsep}{\parskip}%
}%
\item[]}{\end{list}%
%\vspace{-\parskip}
}
/Roger