我想要一个裁剪为图像大小(modelo1.png)但顶部边距仍然存在的 pdf 文件。
\documentclass{standalone}
\pagestyle{empty}
\usepackage{graphicx}
\usepackage[width=9cm, height=9cm,top=0cm]{geometry}
\begin{document}
\begin{picture}(270,300)
\put(-0.5,0.5){\includegraphics[width=9cm,height=9cm]{documentos/modelo1.png}}
\put(180,15){\Large F000939}
\end{picture}
\end{document}
我该如何修复它?
答案1
picture
环境高于图像,因此顶部有空白。调整picture
环境大小以与图像相同:
\documentclass{standalone}
\usepackage{graphicx}
\begin{document}
\begin{picture}(257,256)
\put(0,0){\includegraphics[width=9cm,height=9cm]{example-image}}
\put(180,15){\Large F000939}
\end{picture}
\end{document}