bash - How to ignore certain LaTeX commands and options with aspell? -
i use following command make spell check on thesis:
cat thesis.tex | aspell list --mode=tex -d en_us -p ./wordlist.txt | sort | uniq -u it uses custom word list file , reduces spelling mistakes unique entries. unfortunately, aspell not ignore commands such \lstinline{} contain code. neither ignore name of options such "basicstyle". make sense check values of options (such "caption") rest should ignored. how can ignore such commands , options?
Comments
Post a Comment