Markdown 편집기 Typora의 일본어 글꼴이 Windows에서는 다사다사인 것을 어떻게든

Typora은 간단하고 사용하기 편리한 Markdown 편집기로 현재 무료로 사용할 수 있습니다. 나는 최근에 이것에 빠졌습니다.

한자 표시 문제



매우 좋아하지만 Windows 환경에서 일본어를 사용하면 표시 글꼴의 한자 부분이 다사다사가 되는 문제가 있습니다. 이것은 어쩌면 내 환경에만 의존하는 문제 일 수 있습니다. 도대체 어떤 폰트가 사용되고 있는지도 모릅니다.



글꼴 맞춤설정 공식 정보



아래에서 공식 맞춤설정 방법 가이드를 찾았습니다. 단, 이 방법으로 base.user.csstheme 폴더에 두고, bodyfont-family 의 지정까지 영향을 받습니다. 여기는 아래와 같이 테마마다 대응해야 합니다.

Custom Font ht tp // 스푼 rt. ty Pora. 이오 / 쿠 s와 m 후 t /

Add Custom CSS ht tp // 스푼 rt. ty Pora. 이오 / 아 d 쿠 s와 m C s /

해결책



개별 테마마다 사용자 정의를 위한 CSS를 준비할 수 있습니다.

Preference > Advanced Settings > Open Theme Folder에서 다음 폴더를 엽니다.
C:\Users\<username>\AppData\Roaming\Typora\themes

각 개별 테마 (예 : github.css), body font-family .라는 이름을 지정하고 위의 폴더에 넣으면 설정이 반영됩니다.



CSS의 예



github.user.css


body {
    font-family: "Open Sans","Clear Sans","Helvetica Neue",Helvetica,Arial,sans-serif,"Hiragino Kaku Gothic ProN","MS PGothic";
}

newsprint.user.css


body {
    font-family: "PT Serif", 'Times New Roman', Times,"Hiragino Mincho ProN","MS PMincho";
}

night.user.css


html,
body,
button,
input,
select,
textarea {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif,"Hiragino Kaku Gothic ProN","MS PGothic";
}

pixyll.user.css


body {
    font-family: "Merriweather", "PT Serif", Georgia, "Times New Roman", "STSong", Serif,"Hiragino Mincho ProN","MS PMincho";
}

white.user.css


body {
    font-family: "Vollkorn", Palatino, Times,"Hiragino Mincho ProN","MS PMincho";
}

좋은 웹페이지 즐겨찾기