I'm currently trying to understand what's the best way to set pictures in my Overleaf project at a particular place (taking the width of the page).
I usually do it like this (put a name.png file in the Pictures folder):
\begin{figure}[h]
\centering
\includegraphics[scale=0.7]{Pictures/name.png}
\caption{some text}
\label{the label}
\end{figure}
I adapt the scale until it fits in the width of the page. Is there a better way to put my pictures ? I want them to appear exacly where I write this code.
\includegraphics[width=\textwidth]{Pictures/name.png}– Zarko May 26 '22 at 07:30