is there any way to ONLY print out a pdf with all the image with the correct sizes as they appear in the single chapters/sections etc...? The reason is I want to only print out some pages (not the full article / thesis) containing only the images so that I can easily and cheap check wether the image quality is okay or not. Therefor, I don't need any tables, listings, TOC, the text etc... Thanks!
Edit: Embed code #1:
\begin{figure}[htb]
\includegraphics[width=\textwidth]{flow1.pdf}
\caption{blaaaa}
\label{fig:blaaa}
\end{figure}
Embed code #2:
\begin{figure}[htb]
\centering
\hfill
\subfloat[htb][asd]{\fcolorbox{plotBord}{plotPadd}{\includegraphics[scale=\scalefaktorDbl]{figs/asdasd.png}}\label{fig:LZKf1}}
\hfill
\subfloat[htb][asd234asd]{\fcolorbox{plotBord}{plotPadd}{\includegraphics[scale=\scalefaktorDbl]{figs/asdasd}}\label{fig:asd}}
\hfill\null
\caption{aasd}\label{fig:asd}
\end{figure}
\usepackage[notext]{crop}. – Martin Scharrer Jul 11 '11 at 20:47endfloat, it puts all figures and tables at the end of the document. Then you can easily print only the pages with the images. after having done, delete the package and you'll get the original paper. – Jul 11 '11 at 20:49\let\newpage\relaxbefore the images – Jul 11 '11 at 20:59Error, \newpage undefined. I put the code in the preamble! When I put it in front of the first figure, it doesn't work but no error occurs... Isn't there a more comfortable way? – tim Jul 11 '11 at 21:08\usepackage{xcomment}\xcomment{figure}to ignore everything exceptfigures. – Martin Scharrer Jul 11 '11 at 21:21error ! file ended while scanning use of \next:( – tim Jul 11 '11 at 21:25\end{figure}inside another macro, don't you? – Martin Scharrer Jul 11 '11 at 21:32