我有一个自定义设置面,我曾在emacs启动文件中使用过,特别是当我启动乳胶文件时,但我正在合并和更新我的.emacs文件,所以我没有启动乳胶文件的单独启动过程。我想设置它,以便仅在乳胶模式打开时设置此自定义面。因为它是一个自定义的面孔我不认为设置一个LaTeX模式钩子是明智的,但我知道应该有一种方法来做到这一点。我只是在输入时才更改字体和文本大小。如果可能的话,我也希望这能用于文本模式。附上下面的自定义面。
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:inherit nil :stipple nil :background "white" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 98 :width normal :foundry "unknown" :family "DejaVu Sans")))))
答案 0 :(得分:9)
您可以使用 set-face-attribute 设置自定义面,而不是自定义设置面,但它仍会更改“在所有缓冲区中”的面。
(set-face-attribute 'default nil
:inherit nil
:stipple nil
:background "white"
:foreground "black"
:inverse-video nil
:box nil
:strike-through nil
:overline nil
:underline nil
:slant 'normal
:weight 'normal
:height 98
:width 'normal
:foundry "unknown"
:family "DejaVu Sans")
您应该识别正确的面并且只设置它们,不要设置默认。要确定使用哪个面部this