包含的 pdf 文本位于新(编译)pdf 文本下方

包含的 pdf 文本位于新(编译)pdf 文本下方

我使用该函数\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

相关内容