기울임꼴 글꼴

코드 편집기나 터미널에서 글꼴을 이탤릭체로 만드는 것은 어려울 수 있습니다. 글꼴을 굵게 표시하는 것과 같은 기본 시각적 설정이 없기 때문입니다(일부 글꼴에만 있음). 그러나 글꼴 합자를 지원하는 글꼴이 있는 경우 기울임꼴 글꼴이 멋지게 보이고 정말 멋집니다.

터미널



다음은 글꼴을 이탤릭체로 만들기 위해 터미널 설정에 추가하는 몇 가지 설정입니다.

윈도우 터미널



터미널의 설정 탭에서 JSON 설정을 엽니다.



해당 JSON 파일에 다음 설정을 추가합니다.

"profiles": {
  "list": [
    {
      "font": {
        "face": "VictorMono NF",
        "weight": "bold",
        "axes": {
            "ital": 1 // this is what does the magic
        }
      },
    },
    ...
  ]
}


그놈 터미널



Gnome-Terminal은 대부분의 Linux 배포판에서 기본 터미널 앱입니다. 기울임꼴 글꼴을 사용하려면 추가 구성이 필요하지 않으며 터미널 기본 설정에서 기울임꼴 글꼴 스타일을 선택하기만 하면 됩니다.

그렇게 하려면 기본 설정 > 프로필 > 텍스트 > 글꼴로 이동합니다.

One thing to note is that you should download the whole font family of the font that you want and then choose the italic font. The italic font style won’t show up if you don’t download the whole font family. So it’s better to download them all.



VS 코드



테마와 상관없이 VSCode에서 글꼴을 기울임꼴로 만들려면 settings.json에 다음 설정을 입력하십시오.

"editor.tokenColorCustomizations": {
    "textMateRules": [
      {
        "scope": [
          "comment",
          "entity.name.type.class", // class names
          "keyword", // import, export, return
          "constant", // String, Number, Boolean..., this, super
          "storage.modifier", // static keyword
          "storage.type.class.js" // class keyword
        ],
        "settings": {
          "fontStyle": "italic bold" // comments are italic
        }
      },
      {
        "scope": [
          "invalid",
          "keyword.operator",
          "constant.numeric.css",
          "keyword.other.unit.px.css",
          "constant.numeric.decimal.js",
          "constant.numeric.json"
        ],
        "settings": {
          // following will be excluded from italics (VSCode has some defaults for italics)
          "fontStyle": "bold"
        }
      }
    ]
  },


위의 설정은 다음 항목을 기울임꼴로 만듭니다.
  • 클래스 이름
  • 키워드
  • 상수
  • 메모리 수정자 및 클래스 키워드

  • 또한 VS Code에 기본 기울임꼴 구성이 있는 특정 항목에 대한 사용자 지정 기울임꼴 스타일을 면제합니다.

    기울임꼴 글꼴이 있는 예제 코드



    학점


  • GitHub Page
  • StackOverflow Question
  • 좋은 웹페이지 즐겨찾기