我正在使用 emacs 命令 ps-spool-buffer-with-faces 命令来制作一些我正在处理的代码的后记文件。问题是字体颜色似乎是浅灰色而不是黑色。我已经浏览了 postscript 文件并在 Google 上搜索了一下,但没有找到任何解决方案。有谁知道如何将我的灰色字体变成黑色?
问问题
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自定义变量RETps-print-color-p进行自定义RET
于 2012-07-02T06:00:27.323 回答