Last active
March 26, 2019 10:47
-
-
Save EdoardoVignati/c3fd6ec1fd190f9f8d84f37dffed3685 to your computer and use it in GitHub Desktop.
Useful LaTeX snippet to include a centered resizable image into documents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\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