Skip to content

Instantly share code, notes, and snippets.

@EdoardoVignati
Last active March 26, 2019 10:47
Show Gist options
  • Save EdoardoVignati/c3fd6ec1fd190f9f8d84f37dffed3685 to your computer and use it in GitHub Desktop.
Save EdoardoVignati/c3fd6ec1fd190f9f8d84f37dffed3685 to your computer and use it in GitHub Desktop.
Useful LaTeX snippet to include a centered resizable image into documents
\usepackage{graphicx}
\usepackage{float}
\begin{figure}[H]
\centering
\makebox[\textwidth][c]{\includegraphics[width=1.0\textwidth]{/path/to/img}}
\caption{Description}\label{fig:label}
\end{figure}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment