Answers for "how to add the image in latex with specified dimenstion"

9

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}
Posted by: Guest on February-20-2020
4

latex image scale

\begin{figure}[h!]
\centering
\includegraphics[width=50mm]{method.eps}
\caption{Overall process}
\label{fig:method}
\end{figure}
Posted by: Guest on August-29-2020

Browse Popular Code Answers by Language