Monday, March 5, 2018

How to add image to latex

You can add image to latex document with wrapping

Code
  \usepackage{float}   
\begin{figure}[H]     
\begin{center}          
\includegraphics[width=0.9\textwidth]{image URL}     
\end{center}     
\caption{Image Caption} 
\end{figure}