General ⇒ Figure on whole page
Figure on whole page
How to insert figure in LaTeX document on whole page (without margins)?
Greetings
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Figure on whole page
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Figure on whole page
welcome to the LaTeX Community board!
If you are able to convert the graphic that you want to include into pdf format, you could include it as one single page with the pdfpages package.
Stefan
Figure on whole page
Code: Select all
\documentclass[a4paper]{article}
\usepackage[absolute]{textpos}
\usepackage{graphicx}
\usepackage{lipsum}
\begin{document}
\lipsum[1-5]
\newpage
\thispagestyle{empty}
\begin{textblock*}{\paperwidth}(0mm,0mm)
\noindent\includegraphics[width=\paperwidth,height=\paperheight]{lion_orig.png}
\end{textblock*}
\mbox{}\newpage
\lipsum[1-5]
\end{document}
