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