diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 18:55:58 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 19:14:31 +0200 |
commit | 72c3e4cdb1202273f2d88848bb7625a57c5da65c (patch) | |
tree | eb8d6544060a010d8f2ea6b6bdad2c197b097098 | |
parent | 0698aae8e5403f0b9f7f158d82e7a96d39e7c4f1 (diff) |
gnu: Add texlive-kotex-plain.
* gnu/packages/tex.scm (texlive-kotex-plain): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 32f331638d..8ef9afe339 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7072,6 +7072,26 @@ document author needs. So it can be a useful guide for beginners as well as a reference manual for advanced users.") (license license:cc-by-sa4.0))) +(define-public texlive-kotex-plain + (package + (name "texlive-kotex-plain") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/plain/kotex-plain/" + "tex/plain/kotex-plain/") + (base32 + "0r79cvm7iy1266yvrn60vwq9wjkgmzgfihbz9dqc84lif5q8kmnw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/kotex-plain") + (synopsis "Macros for typesetting Korean under Plain TeX") + (description + "The package provides macros for typesetting Hangul, the native alphabet +of the Korean language, using Plain TeX. Korean text should be encoded in +UTF-8.") + (license license:lppl1.3c))) + (define-public texlive-knuth-errata (package (name "texlive-knuth-errata") |