Skip to content

Instantly share code, notes, and snippets.

@rsnemmen
Created September 27, 2017 18:32
Show Gist options
  • Select an option

  • Save rsnemmen/4cc66cd08ec178e9d42a3354552b363f to your computer and use it in GitHub Desktop.

Select an option

Save rsnemmen/4cc66cd08ec178e9d42a3354552b363f to your computer and use it in GitHub Desktop.
Removes all comments in a LaTeX document, for a "clean" submission to a journal or arXiv
#!/usr/bin/awk -f
#
# Processes a LaTeX/TeX file for a "clean" submission to arXiv.
# Removes all comments.
#
# How to use it:
#
# $ arxiv.awk origin.tex > destination.tex
$0 !~ /^%/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment