我有这个 .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}