ASCII에 지정된 글꼴 사용 및 유니코드에 다른 글꼴 사용

ASCII에 지정된 글꼴 사용 및 유니코드에 다른 글꼴 사용

Emacs를 설정하여 사용하고 싶습니다.

-outline-Courier New-normal-normal-normal-mono-16-*-*-*-c-*-iso8859-1

ASCII 문자를 표시하고

-outline-Arial Unicode MS-normal-normal-normal-sans-16-*-*-*-p-*-gb2312.1980*-*

유니코드 기호를 표시합니다.

이것이 실제로 제가 사용하는 컴퓨터 중 하나에 기본적으로 설정된 방식입니다. 다른 한편으로 C-u C-x =는 관심 있는 유니코드 문자를 누르면

        character: ↷ (8631, #o20667, #x21b7)
preferred charset: unicode (Unicode (ISO10646))
       code point: 0x21B7
           syntax: .    which means: punctuation
         category: .:Base
      buffer code: #xE2 #x86 #xB7
        file code: #xE2 #x86 #xB7 (encoded by coding system utf-8-dos)
          display: no font available

Character code properties: customize what to show
  name: CLOCKWISE TOP SEMICIRCLE ARROW
  general-category: So (Symbol, Other)

There are text properties here:
  fontified            t

완전히 이해되지는 않지만 그 부분 display: no font available은 내가 원하는 것이 아닙니다.

어떻게 바꿀 수 있나요?

답변1

실제로 관심 있는 페이지는 제목이 있는 페이지가 아니지만 Set Fonts( Font Sets참조여기). 나는 추가했다

(set-fontset-font "fontset-default" 'unicode
              "-outline-Arial Unicode MS-normal-normal-normal-sans-*-*-*-*-p-*-gb2312.1980-0")

내 .emacs에 추가했는데 성공했습니다.

관련 정보