├── .github └── workflows │ ├── ci.yml │ └── gh-pages.yml ├── .gitignore ├── LICENSE ├── README.md ├── book.toml └── src ├── SUMMARY.md ├── chapter1 └── chapter_1.md ├── chapter11 └── how-use-debug-option.md ├── chapter2 └── chapter_2.md ├── chapter3 ├── chapter_3.md ├── hello_satysfi.md ├── install_satyrographos.md ├── install_satysfi.md ├── install_satysfi_at_HEAD.md ├── install_satysfi_at_release.md ├── install_satysfi_by_satyrographos.md ├── use_browser.md └── use_docker.md ├── chapter4 ├── chapter_4.md ├── command.md ├── comment_out.md ├── document_structure.md ├── footnote.md ├── import_package.md ├── introduction_inlinecommand_blockcommand.md ├── introduction_mathcommand.md ├── itemize.md ├── math_in_block.md ├── math_in_inline.md └── ref.md ├── chapter5 ├── errors.md └── example1.saty └── img ├── ch11-bbox-demo.JPG ├── ch11-block-bbox-demo.JPG ├── ch11-block-space-demo.JPG ├── ch11-overfull-demo.JPG └── ch11-space-demo.JPG /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/README.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/book.toml -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/chapter1/chapter_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter1/chapter_1.md -------------------------------------------------------------------------------- /src/chapter11/how-use-debug-option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter11/how-use-debug-option.md -------------------------------------------------------------------------------- /src/chapter2/chapter_2.md: -------------------------------------------------------------------------------- 1 | # 導入 2 | 3 | これはSATySFiに関する入門書です。 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/chapter3/chapter_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter3/chapter_3.md -------------------------------------------------------------------------------- /src/chapter3/hello_satysfi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter3/hello_satysfi.md -------------------------------------------------------------------------------- /src/chapter3/install_satyrographos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter3/install_satyrographos.md -------------------------------------------------------------------------------- /src/chapter3/install_satysfi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter3/install_satysfi.md -------------------------------------------------------------------------------- /src/chapter3/install_satysfi_at_HEAD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter3/install_satysfi_at_HEAD.md -------------------------------------------------------------------------------- /src/chapter3/install_satysfi_at_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter3/install_satysfi_at_release.md -------------------------------------------------------------------------------- /src/chapter3/install_satysfi_by_satyrographos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter3/install_satysfi_by_satyrographos.md -------------------------------------------------------------------------------- /src/chapter3/use_browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter3/use_browser.md -------------------------------------------------------------------------------- /src/chapter3/use_docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter3/use_docker.md -------------------------------------------------------------------------------- /src/chapter4/chapter_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter4/chapter_4.md -------------------------------------------------------------------------------- /src/chapter4/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter4/command.md -------------------------------------------------------------------------------- /src/chapter4/comment_out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter4/comment_out.md -------------------------------------------------------------------------------- /src/chapter4/document_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter4/document_structure.md -------------------------------------------------------------------------------- /src/chapter4/footnote.md: -------------------------------------------------------------------------------- 1 | # 脚注 2 | -------------------------------------------------------------------------------- /src/chapter4/import_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter4/import_package.md -------------------------------------------------------------------------------- /src/chapter4/introduction_inlinecommand_blockcommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter4/introduction_inlinecommand_blockcommand.md -------------------------------------------------------------------------------- /src/chapter4/introduction_mathcommand.md: -------------------------------------------------------------------------------- 1 | # 数学コマンドの紹介 2 | -------------------------------------------------------------------------------- /src/chapter4/itemize.md: -------------------------------------------------------------------------------- 1 | # 箇条書き 2 | -------------------------------------------------------------------------------- /src/chapter4/math_in_block.md: -------------------------------------------------------------------------------- 1 | # 別行建て数式 2 | -------------------------------------------------------------------------------- /src/chapter4/math_in_inline.md: -------------------------------------------------------------------------------- 1 | # 文中数式 2 | -------------------------------------------------------------------------------- /src/chapter4/ref.md: -------------------------------------------------------------------------------- 1 | # 相互参照 2 | -------------------------------------------------------------------------------- /src/chapter5/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter5/errors.md -------------------------------------------------------------------------------- /src/chapter5/example1.saty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/chapter5/example1.saty -------------------------------------------------------------------------------- /src/img/ch11-bbox-demo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/img/ch11-bbox-demo.JPG -------------------------------------------------------------------------------- /src/img/ch11-block-bbox-demo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/img/ch11-block-bbox-demo.JPG -------------------------------------------------------------------------------- /src/img/ch11-block-space-demo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/img/ch11-block-space-demo.JPG -------------------------------------------------------------------------------- /src/img/ch11-overfull-demo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/img/ch11-overfull-demo.JPG -------------------------------------------------------------------------------- /src/img/ch11-space-demo.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puripuri2100/learn-satysfi/HEAD/src/img/ch11-space-demo.JPG --------------------------------------------------------------------------------