Created
September 27, 2017 18:32
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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