設定emacs的預設字型

2021-04-07 12:10:15 字數 674 閱讀 4691

字型看著舒服很重要,放入~/.emacs中如下**

(custom-set-faces

'(default ((t (:stipple nil

:background "systemwindow" :foreground "systemwindowtext"

:inverse-video nil :box nil :strike-through nil

:overline nil :underline nil :slant normal :weight normal

:height 98 :width normal :family "outline-新宋體"

:baseline-offset 100

:font "-outline-新宋體-normal-r-normal-normal-12-*-96-96-c-*-*-gb2312"

))))

;; '(default ((t (:fontset "-outline-新宋體-normal-r-normal-normal-13-97-96-96-c-*-*-gb2312"))))

)         ;執行一下 /c-x/c-e

(set-default 'line-spacing 1)  ;/c-x/c-e

;(describe-face 'default)   ;/c-x/c-e

Emacs字型設定

首先,在emacs中,通過選單options set default font,設定好喜歡的字型。然後,把游標放到你所在的字型上,用命令m x describe font來檢視你當前使用的字型名稱 字號大小。把其中的字型資訊拷貝出來,寫到.emacs檔案裡 set default font outl...

matplotlib預設字型設定

使用matplotlib的pyplot時,是支援unicode的,但預設字型是英文字型,導致中文無法正常顯示。解決方法有兩種。一種是手動指定,在 中 from matplotlib.font manager import fontproperties font song fontproperties...

emacs入門技巧 設定字型

emacs的基本配置順手後,我立刻發現預設的字型,courier new,讓人不爽。雖說courier new是mono space的字型,但還是不能滿足程式設計的需要。一是它的0和o不容易區別。二是 和 不容易區別。三是1和l不容易區別 用過prolog的老大們初學時為了這個1和l,沒少熬過夜吧?...

emacs入門技巧 設定字型

emacs的基本配置順手後,我立刻發現預設的字型,courier new,讓人不爽。雖說courier new是mono space的字型,但還是不能滿足程式設計的需要。一是它的0和o不容易區別。二是 和 不容易區別。三是1和l不容易區別 用過prolog的老大們初學時為了這個1和l,沒少熬過夜吧?...

Emacs中英文等寬字型設定

在用emacs org mode寫table的時候,發現怎麼都對不齊。後來問了同事,原來是中英文字型不等寬導致。字型於是找了一些字型來進行配置。emacs字型 自己也可以從網上找一些字型。mac安裝字型 mac字型安裝 配置文泉驛 在 emacs新增以下內容 中文與外文字型設定 defun set ...