LaTeX and Word Count Revisited
In an earlier post I described a TextMate command for determining the word count for a LaTeX document. Simpling using
wc -w
gives an inflated estimate since it will include LaTeX commands. One alternative is to use detex:
detex mydocument.tex | wc -w
This will strip the LaTeX commands first before counting words but this assumes that you are […]