site-start.el に TeX mode 関連をちょっと追加

site-lisp/site-start.el に TeX mode 関係を少し追加。TeX mode は Emacs に標準搭載の,TeX ファイルを編集・タイプセット・プレビューするためのメジャーモードであるが,そのままでは日本語 LaTeX がタイプセットできないので,以下のような設定を site-start.el に。

Windows 用

;;
;; TeX mode
;;
(setq tex-default-mode 'latex-mode)
(setq tex-start-commands "")
(setq latex-run-command "ptex2pdf -l -ot ¥"-kanji=sjis -no-guess-input-enc -interaction=nonstopmode¥"")
(setq tex-print-file-extension ".pdf")
(setq tex-dvi-view-command "SumatraPDF -reuse-instance")
(setq tex-dvi-print-command "start AcroRd32")

macOS 用

;;
;; TeX mode
;;
(setq tex-default-mode 'latex-mode)
(setq tex-start-commands "")
(setq latex-run-command "ptex2pdf -l -ot \"-kanji=utf8 -no-guess-input-enc -interaction=nonstopmode\"")
(setq tex-print-file-extension ".pdf")
(setq tex-dvi-view-command "open -a Skim")