I am new to Latex and this place, so I have a few very simple questions, so simple that I do not find the answers:
To automatically get rid of white spaces around an image on a PDF document I would like to insert into Latex, I should use PDFcrop, right?
Is PDFcrop included in the Latex basics or is it an external program?
If it is part of Latex, is it part of a package? Which one?
By what command do I activate the cropping (I am assuming, in the graphix environment)?

\includegraphicsand just display part of the original pdf without actually editing the file. – David Carlisle Feb 28 '17 at 15:32pdfcropis typically used via a command line interface (e.g the command prompt in Windows), where you write out the commands you want to do, instead of clicking a button in a GUI. So you would open a command prompt, navigate to the folder with the PDF usingcd, and then writepdfcrop filename.pdf, which will generatefilename-crop.pdf. – Torbjørn T. Feb 28 '17 at 16:46