I'm preparing an article which contains figures. As the figures have some blank spaces in all the four margins, I used the clipping option to get ride of such white space when compiling.
I'm wondering if there is a way to export the figure files just as LaTeX read it, i.e after clipping and in the scale used. Thoughts?
Code: Select all
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[!htb]
\centering
\includegraphics[bb=125bp 250bp 490bp 540bp,clip,scale=0.5]{myfigfile.pdf}
\caption{My Figure}
\end{figure}
\end{document}