I'm trying to inset a pdf plot into my Latex document. I've looked up various solutions on this site to similar problems, but none seem to work. I am very new to Latex so excuse me for the poor question.
The PDF plot I want to download is in my downloads folder on my computer. I tried using
\usepackage{pdfpages}
followed by
\includepdf[pages=-,pagecommand={},width=\textwidth]{Rplot.pdf}
But it says it cannot find the file.
\usepackage{graphicx}and\includegraphics{Rplot}, notpdfpages. Just like\includepdfthough, this requires thatRplot.pdfis in the same folder as your.texfile. – Torbjørn T. Apr 05 '18 at 09:12\graphicspath{ {/path/to/downloadfolder/} }? Leonhard, see also https://tex.stackexchange.com/questions/107160/how-to-add-graphics-in-latex – Torbjørn T. Apr 05 '18 at 09:14\graphicspath{{/path/to/downloadfolder/}}(don't forget the double braces) in your preamble, and\includegraphics{Rplot}where you want it in the body of the document. Needless the mention the extension, unless you have other graphic files withe same name and another extension. – Bernard Apr 05 '18 at 09:33