When I add images using the following code
\begin{figure}
\centering
\includegraphics[width=0.7\linewidth]{images/CACPSP}
\caption{Conductivity of SDS at fixed concentration of NaCl and PEO}
\label{fig:cacpsp}
\end{figure}
I am getting the following output
The image is present in my images/ folder and I don't know what to do now. I have tried compiling it using texstudio and overleaf but am still getting the same issue
\usepackage[draft]{graphicx}in your preamble. Remove the[draft]part and the image will show. Or indeed as @Zarko commented the option can be given to the documentclass, which then propagates it to all packages that have this option (such asgraphicx). – Marijn Dec 19 '22 at 13:53draftoption for\documentclass. – Zarko Dec 19 '22 at 13:53draftgiven as option tographicxit can also have been given as an option to the class your are using (of which you provide no information) – daleif Dec 19 '22 at 13:55