Just registered at this forum.
I am writing my M.S.-thesis in Latex.
I have problem concerning a figure.
My documentclass is :
\documentclass[a4paper,12pt]{book}
The problem is:
I want a floating figure to fill up a whole page (it's a map of an area),
so on the specific page were the figure will end up, no headers, footers, page numbers etc. must be visible. And no margins either (preferably very small margins which I am able to assign) I already succeeded to a certain degree, but I can't get loose of the header on top.
At the moment I have:
Code: Select all
\newlength{\PictHOffset}
\setlength{\PictHOffset}{1in}
\addtolength{\PictHOffset}{\hoffset}
\addtolength{\PictHOffset}{\oddsidemargin}
\addtolength{\PictHOffset}{-0.1in}
\addtolength{\paperwidth}{-0.12in}
\begin{figure}[htp]
\centering
\noindent\hspace*{-\PictHOffset}
\framebox{\includegraphics[angle=90,width=\paperwidth,height=0.80\paperheight]{IMAGES/Geographical_map.eps}}
\label{fig:Map}
\end{figure}
I don't need a caption and the figure must floot in the chapter it's in.
Thanks in advance!