latex figure code example

Example 1: include image latex

\documentclass{article}

\usepackage{graphicx}

\begin{document}

\begin{figure}
  \includegraphics[width=\linewidth]{boat.jpg}
  \caption{A boat.}
  \label{fig:boat1}
\end{figure}

Figure \ref{fig:boat1} shows a boat.

\end{document}

Example 2: latex image caption

\begin{figure}
    \includegraphics[width=\textwidth]{Picture}
    \caption{Picture caption}
\end{figure}

Example 3: include picture in latex

\usepackage{graphicx}
\graphicspath{ {./images/} }
\includegraphics{image}

Example 4: latex

Why there isn't Latex language option on Grepper?

Example 5: latex figure

\usepackage{graphicx}
% inside document:

\begin{figure}
	\centering
	\includegraphics[scale=1]{name_of_file_inside_directory}
	\caption{Your caption}
	\label{given_label_that_used_to_reference_figure_in_the_future}
\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

Example 6: latex

www.latex-project.org

Tags:

Misc Example