まず ”.emacs”を見てみよう 抜粋だが 1105 行 位の所から
$ less .emacs
...
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; YaTeX
;; [La]TeX 入力モード
;; M-x yatex とするか、.tex で終わるファイルを読み込むと起動します
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(setq load-path
(append '("/usr/share/emacs/site-lisp/yatex") load-path))
(autoload 'yatex-mode "yatex" "Yet Another LaTeX mode" t)
(autoload 'yahtml-mode "yahtml" "Yet Another HTML mode" t)
;; *.tex *.html の拡張子を持つファイルを開いた場合,
...
そこに移動してみよう
$ su -
Password:
# cd /usr/share/emacs/site-lisp/yatex/
# ls -l | sed 1d
-r--r--r-- 1 root root 2832 Dec 25 2003 comment.el
-r--r--r-- 1 root root 98231 Dec 25 2003 yahtml.el
-rw-rw-r-- 1 root root 100441 Aug 2 2004 yatex.el
-r--r--r-- 1 root root 21585 Dec 25 2003 yatex.new
-rw-rw-r-- 1 root root 24823 Aug 2 2004 yatex19.el
-r--r--r-- 1 root root 49437 Dec 25 2003 yatexadd.el
-r--r--r-- 1 root root 9921 Dec 25 2003 yatexenv.el
-r--r--r-- 1 root root 20235 Dec 25 2003 yatexgen.el
-r--r--r-- 1 root root 15314 Dec 25 2003 yatexhie.el
-r--r--r-- 1 root root 2149 Dec 25 2003 yatexhks.el
-r--r--r-- 1 root root 10704 Dec 25 2003 yatexhlp.el
-r--r--r-- 1 root root 47239 Dec 25 2003 yatexlib.el
-r--r--r-- 1 root root 1541 Dec 25 2003 yatexm-o.el
-r--r--r-- 1 root root 33697 Dec 25 2003 yatexmth.el
-r--r--r-- 1 root root 4750 Dec 25 2003 yatexpkg.el
-r--r--r-- 1 root root 31152 Dec 25 2003 yatexprc.el
-r--r--r-- 1 root root 18812 Dec 25 2003 yatexsec.el
どれを どのように 修正すれば 良いのでしょう。
http://www.linet.gr.jp/~kojima/Plamo/ML/htdocs/200602/msg00067.html
...
Plamo-3.3 では 既にこの変更がされていたようですが
...
と あるように そこに回答を 書いてありました 。 有りがたい 事です。で その通りの修正を施すと
# diff -s yatex.el org_yatex.el 70c70 < "dvips %f %t %s.dvi | lpr") --- > "dvi2ps %f %t %s | lpr") 78c78 < (if YaTeX-dos "%b-" "-p %b") --- > (if YaTeX-dos "%b-" "-f %b") 82c82 < (if YaTeX-dos "%e" "-l %e") --- > (if YaTeX-dos "%e" "-t %e")
再度 emacs で 処理 すると 印字されます。 ページも 付加されます。
にゃんたろう 拝!
2007年12月23日 (日) 00:21:23 JST 作成