vine-users ML アーカイブ



[vine-users:076810] Re: emacs Sylpheed でのプリント( 印刷

  • From: 上間 健 <mugenkai15@xxxxxxxxx>
  • Subject: [vine-users:076810] Re: emacs Sylpheed でのプリント( 印刷
  • Date: Wed, 2 May 2007 04:48:45 +0900
上間です。

2007/04/23につづく

http://www.shido.info/index.php
紫藤のページ のゲストブックで
紫藤さまよりご教授いただきました。


emacsでの(a2ps-j(a2ps.pl-1.45)を使った)印刷成功しました。
印刷の品質はよいと思います。

まとめ ます。
http://www.asahi-net.or.jp/~wp7s-mrn/sap/a2ps.html
ここを参考に a2ps.pl-1.45 (a2ps-j) をインストール(コピーペースト)する。
/usr/local/bin/a2ps-j
実行属性をつける

シェルスクリプト my_print を作成。/usr/local/bin/my_print
---------------------------------------------------------------
#! /bin/bash
a2ps-j -a4 $1 | lpr
---------------------------------------------------------------
実行属性をつける


-------------------------------------------------------- .emacs.my.el(.emacs)
(defun my-print-buffer ()
    (interactive)
    (shell-command  (format "my_print %s" buffer-file-name)))

(global-set-key "\C-m" 'my-print-buffer)
------------------------------------------------------------------------ -----
もっとスマートな書き方あるとおもいますが?!、、、
Ctrl-m できれいに印刷できました。



Mew の方は、、
------------------------------------------------------------------- .mew.el
;;;;(setq mew-print-command-format "mpage -2 -P")  ← コメントアウト
(setq mew-print-command-format "my_print")         ← 作成
------------------------------------------------------------------------ ---
#   で印刷できます。

以上です。