I only use Overleaf and I need to use pdfcrop package, but I have no idea how it is supposed to be used. I have downloaded the package from CTAN, and I tried uploading its files to an Overleaf project and try to write:
\usepackage{pdfcrop} \pdfcrop{name.pdf}
where the file I want to crop is called 'name.pdf'. This didn't work, as the package and command was not recognised.
I could try using TeXworks, by adding the command line 'pdfcrop in.pdf out.pdf', but I'm not sure what else is needed. Can anyone please help?
pdfcrop, what exactly do you need to do, you can crop a pdf file while including it into latex by using teh viewport or trim options to\includegraphics– David Carlisle Nov 24 '21 at 15:04\usepackageand you do not want to dothis every time you run latex it is a one-off edit to your images. But were you really asked to changethe included pdf or simply remove white space from the resulting document by cropping the inclusion which you can do via\includegraphiics[clip,trim=1in 1in 1in 1in]{yourfile.pdf}adjusting the lengths for whatever you need. – David Carlisle Nov 24 '21 at 16:00