Home

Published

- 1 min read

latex figure

img of latex figure

The solution for this is noted below

latex figure

Solution

   \usepackage{graphicx}
% inside document:

\begin{figure}
	\centering
	\includegraphics[scale=1]{path/name_of_file_inside_directory}
	\caption{Your caption}
	\label{label_that_can_be_referenced_later}
\end{figure}

% use float option [H] after {figure} to place figure exactly as positioned
	in LeTeX code
% preferably place file of image inside directory of tex file so
	no pathway required

Try other methods by searching on the site. That is if this doesn’t work