-
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.
* update font settings Signed-off-by: Shunsuke Kimura <[email protected]> * Update description Signed-off-by: Shunsuke Kimura <[email protected]> * Update all templates Signed-off-by: Shunsuke Kimura <[email protected]> --------- Signed-off-by: Shunsuke Kimura <[email protected]>
- Loading branch information
1 parent
f32fb97
commit 4ae4ec4
Showing
9 changed files
with
490 additions
and
459 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
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,71 @@ | ||
# コンパイル方法 | ||
|
||
## VS Codeを使用 | ||
|
||
[README.md](../README.md)をご参照ください。 | ||
|
||
## Typst app にアップロード | ||
|
||
1. [Typst app](https://typst.app/)から `Sign up` でアカウントを作成 | ||
2. `Empty document` から新規プロジェクトを作成 | ||
3. zip展開したファイルおよびフォルダーをアップロード | ||
4. main.typの目のアイコンが閉じていれば、これ![image](https://github.com/user-attachments/assets/bf5dc1c8-78c4-4bb9-9d78-b8ea93271236)をクリック | ||
|
||
## コマンドによるインストール | ||
|
||
Typstのインストール方法は、[TypstのGitHubページ](https://github.com/typst/typst) にある通りですが、以下の3つのパターンが簡単かと思われます。 | ||
|
||
### Windows | ||
|
||
PowerShellを開き以下のコマンドを入力する。 | ||
|
||
```powershell | ||
winget install --id Typst.Typst | ||
``` | ||
|
||
`winget`コマンドが有効でない場合には、Microsoft Storeから[アプリインストーラー](https://apps.microsoft.com/detail/9nblggh4nns1)をインストールすると使えるようになります。 | ||
|
||
### Mac | ||
|
||
1. [Homebrew](https://brew.sh/ja/) をインストール | ||
|
||
```sh | ||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | ||
``` | ||
|
||
2. 以下のコマンドを入力 | ||
|
||
```sh | ||
brew install typst | ||
``` | ||
|
||
### Rust を通してインストール | ||
|
||
Ubuntuの場合などはこの方法をオススメします。 | ||
|
||
1. [Rust](https://www.rust-lang.org/ja/tools/install) をインストール | ||
|
||
```sh | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh | ||
``` | ||
|
||
2. 以下のコマンドを入力する。 | ||
|
||
```sh | ||
cargo install --git https://github.com/typst/typst --locked typst-cli | ||
``` | ||
|
||
## コマンドによるコンパイル | ||
|
||
1. 解凍したフォルダーの `main.typ` を編集 | ||
2. PowerShellやターミナルで `main.typ` のあるディレクトリに移り、以下のコマンドで `main.pdf` を生成 | ||
|
||
```sh | ||
typst compile main.typ | ||
``` | ||
|
||
3. 編集しながらコンパイルしたい場合には、以下のコマンドも便利です。 | ||
|
||
```sh | ||
typst watch main.typ | ||
``` |
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,42 @@ | ||
# フォントの設定 | ||
|
||
[テンプレート関数の引数](../main.typ#L16-L18)で渡すことができます。 | ||
|
||
基本的にWindowsではMSフォント、Macではヒラギノフォントが標準でインストールされているはずです。 | ||
それらに変更していただいても問題ありません。 | ||
Linuxでは、ご自身でインストールする必要があるかもしれません。 | ||
たとえばUbuntuの場合には | ||
|
||
```sh | ||
sudo apt-get update | ||
sudo apt-get install -y fonts-noto fonts-noto-cjk fonts-noto-cjk-extra | ||
``` | ||
|
||
でNotoフォントがインストールできます。 | ||
BIZ UDフォントのインストールは以下で行えます。 | ||
|
||
```sh | ||
# Install BIZUDGothic | ||
curl -L https://github.com/googlefonts/morisawa-biz-ud-gothic/releases/latest/download/BIZUDGothic.zip -o BIZUDGothic.zip | ||
sudo unzip BIZUDGothic.zip -d /usr/local/share/fonts/BIZUDGothic/ | ||
rm -rf BIZUDGothic.zip | ||
|
||
# Install BIZUDMincho | ||
curl -L https://github.com/googlefonts/morisawa-biz-ud-mincho/releases/latest/download/morisawa-biz-ud-mincho-fonts.zip -o morisawa-biz-ud-mincho-fonts.zip | ||
unzip morisawa-biz-ud-mincho-fonts.zip | ||
sudo mkdir -p /usr/local/share/fonts/BIZUDMincho | ||
sudo mv morisawa-biz-ud-mincho-fonts/fonts/ttf/*.ttf /usr/local/share/fonts/BIZUDMincho/ | ||
rm -rf morisawa-biz-ud-mincho-fonts* | ||
|
||
# Update fonts cache | ||
fc-cache -vf | ||
``` | ||
|
||
ちなみにGitHub Actionsで自動生成されるPDFは上記の設定を [.github/workflows/gh-pages.yml](../.github/workflows/gh-pages.yml#L22-L23) で行っております。 | ||
|
||
## フォント選定の考え方 | ||
|
||
1. できるだけデフォルトで入っている | ||
2. 入っていない場合にはインストールが簡単 | ||
3. プロポーショナルフォントが望ましい | ||
4. どのOSでも外観を似せたい |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.