Overleaf - 下载的 pdf 在图片上显示 png 中不可见的线条

Overleaf - 下载的 pdf 在图片上显示 png 中不可见的线条

我有这个 .png 图

在此处输入图片描述

当我使用以下代码将其上传到 overleaf 时

\begin{figure}
\centering
\subfloat{
\begin{tikzpicture}
    \node[anchor=south west,inner sep=0] (image) at (0,0) {\includegraphics[width=0.95\columnwidth,trim={0.05cm 0.2cm 0 0},clip]{figures/intro.png}};
\end{tikzpicture}}
\caption{}
\label{fig:intro}
\end{figure}

然后下载我的论文的 pdf,我现在在图中看到了它。

在此处输入图片描述

如何告诉 Latex 不要渲染线条?示例

\begin{figure}
\centering
\subfloat{
\begin{tikzpicture}
    \node[anchor=south west,inner sep=0] (image) at (0,0) {\includegraphics[width=0.95\columnwidth,trim={0.05cm 0.2cm 0 0},clip]{figures/intro.png}};
\end{tikzpicture}}
\do_not_render_lines
\caption{}
\label{fig:intro}
\end{figure}

相关内容