Possible Duplicate:
Spell checking LaTeX documents
I have a LaTeX file which I use to generate a PDF. Is there any tool which I can use to detect spelling mistakes, either directly in the .tex file or in the pdf file ?
Possible Duplicate:
Spell checking LaTeX documents
I have a LaTeX file which I use to generate a PDF. Is there any tool which I can use to detect spelling mistakes, either directly in the .tex file or in the pdf file ?
Aspell has a special mode to check TeX and so also LaTeX files.
$ aspell -c -t some.tex
Also, your LaTeX editor might already include a special spell checking mode for LaTeX sources, e.g emacs' flyspell comes with options to check LaTeX sources. Emacs is the framework (haha) behind the excellent AucTeX TeX environment.
aspell -t temp.tex , it gives me Error: Unknown Action: temp.tex . Any obvious mistake I am making ?
– prakashkut
Aug 03 '11 at 20:11
aspell -t -c temp.tex to "check" a file.
–
Aug 03 '11 at 21:14
Three basic options:
apselldoes the trick for me. I use VI to edit my LaTeX documents. So, I wanted a tool to check for spelling mistakes rather than going through the entire document manually. – prakashkut Aug 04 '11 at 12:46