【发布时间】:2012-07-02 14:34:15
【问题描述】:
我正在使用 emacs 命令 ps-spool-buffer-with-faces 命令来制作一些我正在处理的代码的后记文件。问题是字体颜色似乎是浅灰色而不是黑色。我已经浏览了 postscript 文件并在 Google 上搜索了一下,但没有找到任何解决方案。有谁知道如何将我的灰色字体变成黑色?
【问题讨论】:
标签: emacs postscript
我正在使用 emacs 命令 ps-spool-buffer-with-faces 命令来制作一些我正在处理的代码的后记文件。问题是字体颜色似乎是浅灰色而不是黑色。我已经浏览了 postscript 文件并在 Google 上搜索了一下,但没有找到任何解决方案。有谁知道如何将我的灰色字体变成黑色?
【问题讨论】:
标签: emacs postscript
假设您只想打印黑白,请尝试:
(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-xcustomize-variableRETps-print-color-p 进行自定义RET
【讨论】: