├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README-ja.md ├── README.md ├── doc └── img │ └── sample_matrix.png ├── example ├── main.pdf └── main.saty └── matrix.satyh /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.satysfi-aux 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekketsuuu/satysfi-matrix/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekketsuuu/satysfi-matrix/HEAD/LICENSE -------------------------------------------------------------------------------- /README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekketsuuu/satysfi-matrix/HEAD/README-ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekketsuuu/satysfi-matrix/HEAD/README.md -------------------------------------------------------------------------------- /doc/img/sample_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekketsuuu/satysfi-matrix/HEAD/doc/img/sample_matrix.png -------------------------------------------------------------------------------- /example/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekketsuuu/satysfi-matrix/HEAD/example/main.pdf -------------------------------------------------------------------------------- /example/main.saty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekketsuuu/satysfi-matrix/HEAD/example/main.saty -------------------------------------------------------------------------------- /matrix.satyh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekketsuuu/satysfi-matrix/HEAD/matrix.satyh --------------------------------------------------------------------------------