私はemacsコマンドps-spool-buffer-with-facesコマンドを使用して、作業中のコードのポストスクリプトファイルをいくつか作成しています。問題は、フォントの色が黒ではなくライトグレーに見えることです。ポストスクリプトファイルをざっと見て少しググったが、解決策が見つからなかった。誰かが私の灰色のフォントを黒くする方法を知っていますか?
質問する
277 次
1 に答える
1
白黒で印刷したいだけだとしたら、次のことを試してください。
(setq ps-print-color-p nil)
それ以外の場合は、ps-print-color-pの他の値を確認してください。
ps-print-color-p is a variable defined in `ps-print.el'. Its value is t Documentation: Specify how buffer's text color is printed. Valid values are: nil Do not print colors. t Print colors. black-white Print colors on black/white printer. See also `ps-black-white-faces'. Any other value is treated as t. You can customize this variable.
M-xカスタマイズ変数ps-print-color-pを使用してカスタマイズできますRETRET
于 2012-07-02T06:00:27.323 に答える