The problem is that spell-checking systems I have seen are very limited. For example, I can do the following:
Code: Select all
\newcommand{\firstPart}{Hell}
\newcommand{\secondPart}{on}
...
\firstPart{}\secondPart{}, World!
Code: Select all
Hellon, World!
Also there can be more complicated text-generation macros with loops, conditions, etc. Also, the same letter can be written as «Я», or as «\CyrYa» and so on... So, I need a system which will be doing spell checking at the output of TeX.
Also it will be good to find errors like «This girls are very pretty»
The best solution I have found is:
1) Produce .pdf from .tex;
2) Do recognition (OCR) of .pdf;
3) Paste recognition result into Microsoft Word;
4) Check spelling in it.
The problems are:
1) Manual, time-consuming work;
2) It is a pain to check spelling in text full of formulas: I need to manually mark most of the formulas as pictures during OCR.
The good thing is that even text inside .eps-images is checked (figures sometimes contain legends and labels which also can have missprints).
What is your suggestions?