Is there a way to stop texcount from counting words in \begin{comment}...\end{comment} blocks? It seems to skip only comments starting with %
Thank you very much in advance!
Add
%TC:group comment 0 0
somewhere near the top of your file. See http://app.uio.no/ifi/texcount/faq.html#newgroup.
\documentclass{article}
\usepackage{verbatim}
%TC:group comment 0 0
\begin{document}
one
\begin{comment}
two three four five six seven eight
\end{comment}
\end{document}
$ texcount tc.tex
File: tc.tex
Encoding: ascii
Words in text: 1
Words in headers: 0
Words outside text (captions, etc.): 0
Number of headers: 0
Number of floats/tables/figures: 0
Number of math inlines: 0
Number of math displayed: 0
\documentclass{...}and ending with\end{document}. – Mar 12 '14 at 14:54