0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Emacs(GUI)にBIZ UD明朝を設定した

Posted at

これは割合簡単にいった。.emacs内で次の指定をすればよい。

'(default ((t (:family "BIZ UDMincho" :foundry "MRSW" :slant normal :weight regular :height 120 :width normal)))))

参考までに、ぼくの.emacsは次のようになっている。

(set-language-environment "Japanese")
(custom-set-variables
 ;; custom-set-variables 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.
 '(current-language-environment "Japanese"))
(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 (:family "BIZ UDMincho" :foundry "MRSW" :slant normal :weight regular :height 120 :width normal)))))
(prefer-coding-system 'utf-8-unix)
(set-file-name-coding-system 'cp932)
(set-keyboard-coding-system 'cp932)
(set-terminal-coding-system 'cp932)
(setq-default line-spacing 13)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?