我正在使用Hunspell和Emacs。 在我的init.el中,我将字典列表设置如下:
(setq ispell-local-dictionary-alist
'(
(nil "[A-Za-z]" "[^A-Za-z]" "" nil ("-d" "en_US") nil utf-8)
("english" "[A-Za-z]" "[^A-Za-z]" "" nil ("-d" "en_GB") nil utf-8)))
如果我拼写检查此TeX文件:
\documentclass {paper}
\begin{document}
The word i.e. and contracted words aren't accepted.
\end{document}
% Local IspellDict: english
# LocalWords:
单词“ie”并且“不是”不被识别,因为每个单词都包含点或单引号。
将字典列表中的OTHERCHARS
设置为"['.]"
无济于事。
无论如何,如果我将字典“en_GB”更改为“en_US”,它就可以了。
所以似乎问题出现在我的字典中。我从链接下载了它:
在网站上找到http://en-gb.pyxidium.co.uk/dictionary/en_GB.zip:
http://wiki.openoffice.org/wiki/Dictionaries。