├── .gitignore ├── README.md ├── books ├── Makefile ├── a5-cho-1-elementary.tex ├── a5-cho-2-intermediate.tex ├── a5-cho-3-advanced.tex ├── a5-gokyoshumyo.tex ├── a5-hatsuyoron.tex ├── a5-lee-chang-ho.tex ├── a5-xxqj.tex ├── a6-cho-1-elementary.tex ├── a6-cho-2-intermediate.tex ├── a6-cho-3-advanced.tex ├── a6-gokyoshumyo.tex ├── a6-hatsuyoron.tex ├── a6-lee-chang-ho.tex ├── a6-xxqj.tex ├── content │ ├── cho-1-elementary.tex │ ├── cho-2-intermediate.tex │ ├── cho-3-advanced.tex │ ├── gokyoshumyo.tex │ ├── hatsuyoron.tex │ ├── lee-chang-ho.tex │ └── xxqj.tex ├── gzp1.tex ├── gzp2.tex ├── gzp3.tex ├── includes │ ├── a5-gotc.tex │ ├── a5-motto.tex │ ├── a5.tex │ ├── a6-gotc.tex │ ├── a6-motto.tex │ └── a6.tex ├── problems │ ├── cho-1.tex │ ├── cho-2.tex │ ├── cho-3.tex │ ├── gokyoshumyo.tex │ ├── hatsuyoron.tex │ ├── lee-chang-ho.tex │ └── xxqj.tex └── titles │ ├── gokyoshumyo.pdf │ ├── hatsuyoron.pdf │ └── xxqj.pdf └── scripts ├── 186 └── order.txt ├── 187 └── order.txt ├── 188 └── order.txt ├── 190 └── order.txt ├── 193 └── order.txt ├── 194 └── order.txt ├── download.sh ├── process.sh ├── rotate.pl └── zal ├── problem-186-0074.sgf ├── problem-186-0075.sgf ├── problem-187-0067.sgf ├── problem-190-0051.sgf ├── problem-190-0058.sgf ├── problem-190-0063.sgf ├── problem-190-0085.sgf ├── problem-190-0106.sgf ├── problem-190-0107.sgf ├── problem-193-0014.sgf ├── problem-193-0084.sgf ├── problem-193-0092.sgf └── problem-194-0005.sgf /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.pdf 3 | pub/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/README.md -------------------------------------------------------------------------------- /books/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/Makefile -------------------------------------------------------------------------------- /books/a5-cho-1-elementary.tex: -------------------------------------------------------------------------------- 1 | \def\format{a5} 2 | 3 | \input content/cho-1-elementary 4 | -------------------------------------------------------------------------------- /books/a5-cho-2-intermediate.tex: -------------------------------------------------------------------------------- 1 | \def\format{a5} 2 | 3 | \input content/cho-2-intermediate 4 | -------------------------------------------------------------------------------- /books/a5-cho-3-advanced.tex: -------------------------------------------------------------------------------- 1 | \def\format{a5} 2 | 3 | \input content/cho-3-advanced 4 | -------------------------------------------------------------------------------- /books/a5-gokyoshumyo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/a5-gokyoshumyo.tex -------------------------------------------------------------------------------- /books/a5-hatsuyoron.tex: -------------------------------------------------------------------------------- 1 | \def\format{a5} 2 | 3 | \def\titleimagewidth{10cm} 4 | \input content/hatsuyoron 5 | -------------------------------------------------------------------------------- /books/a5-lee-chang-ho.tex: -------------------------------------------------------------------------------- 1 | \def\format{a5} 2 | 3 | \input content/lee-chang-ho 4 | -------------------------------------------------------------------------------- /books/a5-xxqj.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/a5-xxqj.tex -------------------------------------------------------------------------------- /books/a6-cho-1-elementary.tex: -------------------------------------------------------------------------------- 1 | \def\format{a6} 2 | 3 | \input content/cho-1-elementary 4 | -------------------------------------------------------------------------------- /books/a6-cho-2-intermediate.tex: -------------------------------------------------------------------------------- 1 | \def\format{a6} 2 | 3 | \input content/cho-2-intermediate 4 | -------------------------------------------------------------------------------- /books/a6-cho-3-advanced.tex: -------------------------------------------------------------------------------- 1 | \def\format{a6} 2 | 3 | \input content/cho-3-advanced 4 | -------------------------------------------------------------------------------- /books/a6-gokyoshumyo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/a6-gokyoshumyo.tex -------------------------------------------------------------------------------- /books/a6-hatsuyoron.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/a6-hatsuyoron.tex -------------------------------------------------------------------------------- /books/a6-lee-chang-ho.tex: -------------------------------------------------------------------------------- 1 | \def\format{a6} 2 | 3 | \input content/lee-chang-ho 4 | -------------------------------------------------------------------------------- /books/a6-xxqj.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/a6-xxqj.tex -------------------------------------------------------------------------------- /books/content/cho-1-elementary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/content/cho-1-elementary.tex -------------------------------------------------------------------------------- /books/content/cho-2-intermediate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/content/cho-2-intermediate.tex -------------------------------------------------------------------------------- /books/content/cho-3-advanced.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/content/cho-3-advanced.tex -------------------------------------------------------------------------------- /books/content/gokyoshumyo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/content/gokyoshumyo.tex -------------------------------------------------------------------------------- /books/content/hatsuyoron.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/content/hatsuyoron.tex -------------------------------------------------------------------------------- /books/content/lee-chang-ho.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/content/lee-chang-ho.tex -------------------------------------------------------------------------------- /books/content/xxqj.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/content/xxqj.tex -------------------------------------------------------------------------------- /books/gzp1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/gzp1.tex -------------------------------------------------------------------------------- /books/gzp2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/gzp2.tex -------------------------------------------------------------------------------- /books/gzp3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/gzp3.tex -------------------------------------------------------------------------------- /books/includes/a5-gotc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/includes/a5-gotc.tex -------------------------------------------------------------------------------- /books/includes/a5-motto.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/includes/a5-motto.tex -------------------------------------------------------------------------------- /books/includes/a5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/includes/a5.tex -------------------------------------------------------------------------------- /books/includes/a6-gotc.tex: -------------------------------------------------------------------------------- 1 | \baselineskip=1em 2 | \label 3 | 4 | \input gooemacs 5 | -------------------------------------------------------------------------------- /books/includes/a6-motto.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/includes/a6-motto.tex -------------------------------------------------------------------------------- /books/includes/a6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/includes/a6.tex -------------------------------------------------------------------------------- /books/problems/cho-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/problems/cho-1.tex -------------------------------------------------------------------------------- /books/problems/cho-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/problems/cho-2.tex -------------------------------------------------------------------------------- /books/problems/cho-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/problems/cho-3.tex -------------------------------------------------------------------------------- /books/problems/gokyoshumyo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/problems/gokyoshumyo.tex -------------------------------------------------------------------------------- /books/problems/hatsuyoron.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/problems/hatsuyoron.tex -------------------------------------------------------------------------------- /books/problems/lee-chang-ho.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/problems/lee-chang-ho.tex -------------------------------------------------------------------------------- /books/problems/xxqj.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/problems/xxqj.tex -------------------------------------------------------------------------------- /books/titles/gokyoshumyo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/titles/gokyoshumyo.pdf -------------------------------------------------------------------------------- /books/titles/hatsuyoron.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/titles/hatsuyoron.pdf -------------------------------------------------------------------------------- /books/titles/xxqj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/books/titles/xxqj.pdf -------------------------------------------------------------------------------- /scripts/186/order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/186/order.txt -------------------------------------------------------------------------------- /scripts/187/order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/187/order.txt -------------------------------------------------------------------------------- /scripts/188/order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/188/order.txt -------------------------------------------------------------------------------- /scripts/190/order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/190/order.txt -------------------------------------------------------------------------------- /scripts/193/order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/193/order.txt -------------------------------------------------------------------------------- /scripts/194/order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/194/order.txt -------------------------------------------------------------------------------- /scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/download.sh -------------------------------------------------------------------------------- /scripts/process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/process.sh -------------------------------------------------------------------------------- /scripts/rotate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/rotate.pl -------------------------------------------------------------------------------- /scripts/zal/problem-186-0074.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/zal/problem-186-0074.sgf -------------------------------------------------------------------------------- /scripts/zal/problem-186-0075.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/zal/problem-186-0075.sgf -------------------------------------------------------------------------------- /scripts/zal/problem-187-0067.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/zal/problem-187-0067.sgf -------------------------------------------------------------------------------- /scripts/zal/problem-190-0051.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/zal/problem-190-0051.sgf -------------------------------------------------------------------------------- /scripts/zal/problem-190-0058.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/zal/problem-190-0058.sgf -------------------------------------------------------------------------------- /scripts/zal/problem-190-0063.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/zal/problem-190-0063.sgf -------------------------------------------------------------------------------- /scripts/zal/problem-190-0085.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/zal/problem-190-0085.sgf -------------------------------------------------------------------------------- /scripts/zal/problem-190-0106.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/zal/problem-190-0106.sgf -------------------------------------------------------------------------------- /scripts/zal/problem-190-0107.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/zal/problem-190-0107.sgf -------------------------------------------------------------------------------- /scripts/zal/problem-193-0014.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/zal/problem-193-0014.sgf -------------------------------------------------------------------------------- /scripts/zal/problem-193-0084.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/zal/problem-193-0084.sgf -------------------------------------------------------------------------------- /scripts/zal/problem-193-0092.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/zal/problem-193-0092.sgf -------------------------------------------------------------------------------- /scripts/zal/problem-194-0005.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasuki/tsumego/HEAD/scripts/zal/problem-194-0005.sgf --------------------------------------------------------------------------------