I need to count the no. of words in thesis. I have written the thesis
in multiple files. On searching the FAQ (http://www.math.upenn.edu/
tex_docs/help/faq/uktug-faq/FAQ64.html) I found that worcount can be
used for this purpose.
Can anybody PLEASE tell me how to run 'wordcount' on TeXnic Center (I
downloaded the entire package, not customized or recomended).
Regards
Neha
It may not be possible for you to use it. After all, since you are using
TeXnicCenter, you are working under WIndows, and wordcount is a Bourne
shell script.
I suggest that you install Perl in your machine and use the latexcount
Perl script instead, as suggested at the FAQ:
http://www.tex.ac.uk/cgi-bin/texfaq2html?label=wordcount
Best regards,
Jose Carlos Santos
There are other decent editors for that purpose also, but I choose
Vim.
Thanks Jose, Thanks Kasmara.
Appreciate your help.
While searching yesterday, I also came across this-
-------
The shell script wordcount.sh and accompanying file wordcount.tex can
be used to count words, whilst ignoring LaTeX commands. This can be
downloaded from http://www.tex.ac.uk/tex-archive/help/Catalogue/
entries/wordcount.html. In this case you will need the following in
your Makefile (again supposing that your document is called
"myrep.tex"):
myrep.dvi : myrep.tex
wordcount.sh myrep.tex | \
sed '/[0-9]\+ words/!d;s/.\+ \([0-9]\+\) words
\./\1/' \
> docwc.tex
latex myrep
(You may need to use bash wordcount.sh instead of wordcount.sh.)
Again, your LaTeX source code will need to load in "docwc.tex":
\numwords{\input{docwc}}
-------
from this site - http://theoval.sys.uea.ac.uk/~nlct/latex/packages/
cmpreprt/cmpreprt.html#commands
Since I am not very familiar with LaTeX yet, so I couldnt make much
sense of it.
Regards
Neha