Skip to content

Instantly share code, notes, and snippets.

@aspiwack
Created November 15, 2024 01:54
Show Gist options
  • Save aspiwack/4de5ffbae45412ecf776f9455f9b979f to your computer and use it in GitHub Desktop.
Save aspiwack/4de5ffbae45412ecf776f9455f9b979f to your computer and use it in GitHub Desktop.
Slicing a pdf while retaining the hyperlinks with pdftk
MAIN_END_PAGE = 25
%-submission.pdf: %.pdf
pdftk $< cat 1-$(MAIN_END_PAGE) output temp.pdf
pdftk $< dump_data_utf8 | pdftk temp.pdf update_info_utf8 - output $@
rm -f temp.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment