My images doesn't show up on my LaTex (I use Miktex and TexMaker).
I have tried many many things, including many formats like .jpg, .eps, .ps ... but there's no format working properly.
In .eps format, the image is detected by LaTeX (when i change the path, it says "image not found") but it appears as a white square.
In .jpg format, I get this error message :
Here is the code I used :! LaTeX Error: Cannot determine size of graphic in Rplot.jpg (no BoundingBox).
Code: Select all
\documentclass{article}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[final,dvips]{graphicx}
\usepackage{fancybox}
\usepackage{makeidx}
\usepackage{gensymb}
\title{Project}
\author{Name}
\makeindex
\bibliographystyle{prsty}
\begin{document}
\maketitle
\newpage
\tableofcontents
\newpage
\section{Preliminary}
\subsection{Dataset}
We chose to study the temperature of London.
\begin{itemize}
\item Date : Month/Year from January 2009 to December 2019
\item Temperature: Average temperature in London($^{\circ}$C)
\item Rain (mm)
\item Sunshine (h)
\item Wind (km/h)
\end{itemize}
\subsection{Descriptive statistics}
\begin{figure}[ht!]
\centering
\includegraphics[width=90mm]{Rplot.eps}
\caption{A simple caption \label{overflow}}
\end{figure}
%%\includegraphics[width=3in]{Rplot.eps}
\end{document}

[Screenshot of what appears in my PDF output]
Any ideas ?
Thanks !