私はこの.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 をダウンロードすると、図にこれが表示されます。
ラテックスに線をレンダリングしないように指示するにはどうすればいいでしょうか? 例
\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}