\documentclass{article}
\usepackage{graphicx,epstopdf}
\begin{document}
\begin{figure}[!htb]
\centering
\includegraphics[scale=.7]{Luke.eps}
\caption{Digraph.}
\label{fig:digraph}
\end{figure}
\end{document}
standalone
질문: 클래스를 사용하고 싶습니다 . 어떻게 해야 하나요?
Skillmoon의 답변과 함께 작동합니다.
\documentclass[preview,border={-100pt 5pt -100pt 3pt}]{standalone}
답변1
귀하의 파일이 없습니다(이를 위해 다운로드하지 않을 것입니다). 다음이 작동합니다.
\documentclass[preview]{standalone}
\usepackage{graphicx,epstopdf}
\begin{document}
\begin{figure}[!htb]
\centering
\includegraphics[scale=.7]{example-image-a}
\caption{Digraph.}
\label{fig:digraph}
\end{figure}
\end{document}