-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
576484a
commit f3aa79d
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# フォントの設定 | ||
|
||
lib.typ で設定されております. | ||
例えば RSJ の場合は [libs/rsj-conf/lib.typ](../libs/rsj-conf/lib.typ#L5-L7) にあります. | ||
|
||
基本的に Windows では MS フォント,Mac ではヒラギノフォントが自動的に選択されるはずです. | ||
Linux では,フォントがインストールされておりませんので,ご自身でインストールする必要があるかもしれません. | ||
例えば Ubuntu の場合には | ||
``` | ||
sudo apt-get update | ||
sudo apt-get install -y fonts-noto fonts-noto-cjk fonts-noto-cjk-extra | ||
``` | ||
で Noto フォントがインストールできます. | ||
ちなみに GitHub Actions で自動生成される PDF は上記の設定を [.github/workflows/gh-pages.yml](../.github/workflows/gh-pages.yml#L22-L23) で行っております. | ||
|
||
以下,本文より引用. | ||
|
||
> ここで,ゴシック体とは "MS PGothic", "Hiragino Kaku Gothic Pro", "IPAexGothic", "Noto Sans CJK JP" のいずれか,明朝体とは ""MS PMincho", "Hiragino Mincho Pro", "IPAexMincho", "Noto Serif CJK JP" のいずれかで見つかるものが採用されます. | ||
> これらのフォントがお使いのコンピュータになければインストールするか,代わりに使いたいフォントがあればソースコードの方に追加してください. | ||
> 以下のコマンドで使用可能なフォント一覧を確認できます. | ||
> ```sh | ||
> typst fonts | ||
> ``` |