Thanks to this Forum I have solved a whole bunch of problems, but I am unable to do one thing: I need to place a large figure on a page, nothing else. Because the Figure is larger then the text area I want to center it horizontally and vertically.
Here is an example how I've trying to achieve this. It is quite ugly and I don't think that the figure vertical center is perfect. Because I am using this command very often I am looking for something easier.
Thanks,
Pintu
Code: Select all
\documentclass[final,11pt,paper=a4]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{mathtools}
\usepackage{floatpag} % for figures allowing to overlap page numbers
\floatpagestyle{plain}
\rotfloatpagestyle{plain}
\usepackage[labelfont=bf,hang,singlelinecheck=false]{caption}
\setlength{\captionmargin}{20pt}
\captionsetup{justification=justified}
\usepackage{geometry}
\geometry{
centering,
footskip=35pt,
textheight=670pt,
footnotesep=24pt plus 2pt minus 12pt,
}
\begin{document}
\begin{table}[c]
\begin{minipage}[c][\textheight]{\textwidth}
\thisfloatpagestyle{empty}
\caption{Full Size Table}
\centerline{
\includegraphics[angle=90]{table}}
\label{table}
\end{minipage}
\end{table}
\end{document}