LaTeX/Including graphics

From Wikiversity
Jump to navigation Jump to search

To include graphics, e.g. a .jpg file, the basic syntax is \includegraphics. The package graphicx is needed.

\documentclass{article}
\usepackage[pdftex]{graphicx}
\begin{document}
\includegraphics{yourpicturefile.jpg}
\end{document}

See also[edit source]