Overleaf - 다운로드한 PDF에는 png에 표시되지 않는 그림의 선이 표시됩니다.

Overleaf - 다운로드한 PDF에는 png에 표시되지 않는 그림의 선이 표시됩니다.

이 .png 그림이 있습니다

여기에 이미지 설명을 입력하세요

다음 코드를 사용하여 뒷면에 업로드하면

\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}

관련 정보