Go to the first, previous, next, last section, table of contents.

TeX や *roff のドキュメントにスペル・チェックをかけることができますか?

Ispell で TeX や *roff のドキュメントにスペル・チェックをかけるときは, .emacs ファイルに次のような行を加えてください. `delatex' というプログラムは TeX の配布パッケージに含まれています. また `deroff' は anonymous FTP で {どこかから} 入手できます. Daniel Trinkle による `detex' は anonymous FTP で入手できます (arthur.cs.purdue.edu: pub/trinkle/detex-2.3.tar.Z).

  ;; by David G. Grubbs <dgg@ksr.com>:
  (setq ispell-filter-hook-args '("-w"))
  (setq TeX-mode-hook
        (function
         (lambda ()
           (setq ispell-filter-hook "delatex"))))
  (setq nroff-mode-hook
        (function
         (lambda ()
           (setq ispell-filter-hook "deroff"))))

Go to the first, previous, next, last section, table of contents.