How can I separate the following high-resolution single-page PDF into multiple pages (page count is unimportant), so that each page is the size of standard printer paper (8.5"x11"). The map should be zoomed to 200% before it's separated, so that I can see the small details. At 100% resolution lots of details are missed.
https://parks.ny.gov/documents/parks/HarrimanTrailMap.pdf
I've tried some of the solutions here, even though that question doesn't pertain to this one, but had no success.
wsl ghostscript -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/printer -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf
– whitewings Jan 07 '21 at 02:08