본문 바로가기
Tools for Dev

LaTeX 에서 PNG image 이용시 발생하는 에러

by leanu 2010. 5. 13.
! LaTeX Error : Cannot determine size of graphic in XXX.png (no BoundingBox).
LaTeX 사용중에 귀찮게 하는 에러중에 하나. 에러 발생하지 않으려면, 파일의 이미지 사이즈를 알아낸 후 includegraphics 에서 boundary box 영역를 제대로 잡아주면 된다.
\begin{figure}[htb]
   \centering
   \includegraphics[scale=0.5,bb=0 0 385 567]{figuras/picture.png}
   \caption{Some description about the picture}
   \label{picture-label}
\end{figure}

댓글