我经常使用 PowerPoint 制作图形,将其保存为图像文件,将其加载到 Latex 编译器(例如 Overleaf)中,然后创建 PDF 文件。问题是,当在 PDF 文件中显示时,图形有时会变得很难看。
例如,我在 PowerPoint 上创建了一个简单的图形,如下所示。我使用文本框来显示图像的尺寸。文本框的形状轮廓应该是不可见的。
创建图形后,我选择整个图形,右键单击它,然后将其另存为 PNG 文件。我附上了我保存的实际 PNG 文件。正如预期的那样,我们看不到两个文本框周围的任何轮廓。
我将此图像加载到 Overleaf 上,编译 LaTeX 代码,并生成 PDF 文件。我使用了以下乳胶代码:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[]{caption}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=\linewidth]{sample_image.png}
\caption{Sample image. The edges of the textboxes ("W" and "h") are visible when rendered as a PDF file.}
\label{fig:enter-label}
\end{figure}
\end{document}
我使用 Adobe Acrobat Reader 打开 PDF 文件,现在可以看到文本框周围有灰色轮廓!我更新了 Adobe Acrobat Reader,但此问题仍然存在。我不确定是什么导致了这个问题。我附上了一个 zip 文件,其中包含 PowerPoint、图像文件和渲染的 PDF 文件。