我使用该函数\includegraphics*[trim=1cm 1cm 1cm 1cm, clip,page=1]{a.pdf}
从中裁剪出一张图片a.pdf
。现在,在编译.tex
文件后,pdflatex
如果我尝试在新生成的 pdf 中选择导入图形周围的文本,我可以看到 pdfa.pdf
的文本位于新 pdf 的文本下方。我该如何解决这个问题?
梅威瑟:
\documentclass[10pt]{scrartcl}
\usepackage{graphicx}
\begin{document}
random text
random text
random text
random text
random text
\begin{center}
\includegraphics*[page=1,clip, trim=2.3cm 16cm 10.4cm 6cm, scale=.5]{a.pdf} %Please replace the filename with any pdf with text in the first page
\end{center}
random text
random text
random text
random text
\end{document}
照片:
答案1
您可以使用 ghostscript (版本 9.15 或更新版本) 将 pdf 转换为没有文本的 pdf:
gswin64c -o a-with-outlines.pdf -dNoOutputFonts -sDEVICE=pdfwrite a.pdf
然后包括a-with-outlines
。