Ich habe diese .png-Figur
Wenn ich es mit dem folgenden Code auf Overleaf hochlade
\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}
Und dann lade ich das PDF meines Dokuments herunter. Ich sehe dies jetzt in der Abbildung.
Wie sage ich Latex, dass die Zeilen nicht gerendert werden sollen? Beispiel
\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}