I want to upload an .eps figure in my latex, i read this thread Why doesn't LaTeX allow me to import my .eps file when I compile it?
Although i got confused, is TexMaker able to convert .eps fully or is there a package which i should use?
\documentclass[authoryear,preprint,review,12pt]{elsarticle}
\usepackage{graphicx}
\usepackage{float}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{mathtools}
\usepackage{adjustbox}
\usepackage{lineno}
\begin{document}
\begin{flushleft}
\begin{figure}[H]\label{East Scotland}
%\includegraphics[scale=0.35]{figures/2.jpg}
\includegraphics[width=1.3\textwidth,keepaspectratio]{figures/boundaries_1h.eps}
\caption{Mesh and coordinates for North Sea, depth is in meters(m) }
\end{figure}
\end{flushleft}
\end{document}
thank you
pdflatexmust be launched with the--shell-escapeswitch (from TeXmaker Option -> Configure). It enables pdflatex to interrupt compilation to let an external application be launched. Alternatively, you could do the conversion to pdf by hand, usingepspdforepspdf-extraif you're under Windows: it has a gui interface. The former is included in TeX Live (not in MiKTeX). You can take a look at a presentation, and download from here: ftp://ftp.dante.de/tex-archive/help/Catalogue/entries/epspdf.html, ftp://ftp.dante.de/tex-archive/help/Catalogue/entries/epspdf-extra.html. – Bernard Aug 14 '14 at 11:58latexto compile*.texfiles with.epsfiles included – Aug 14 '14 at 12:28