diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 12:01:25 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 12:01:25 +0200 |
commit | 4544eb3678daebfd1aa1f22ab83ca73294e7ec5f (patch) | |
tree | 9cc37b6b509cd7a04f694b985321abba8908ade8 /gnu | |
parent | 9ad858a7b469f31715e0f0ce6609a9dc79329585 (diff) |
gnu: Add texlive-bxjscls.
* gnu/packages/tex.scm (texlive-bxjscls): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ea9e857913..db5babb0ad 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3407,6 +3407,28 @@ ISO-2022-JP (jis), EUC-JP (euc), Shift_JIS (sjis), and the Adobe-Japan1 glyph set.") (license license:expat))) +(define-public texlive-bxjscls + (package + (name "texlive-bxjscls") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/bxjscls/" "source/latex/bxjscls/" + "tex/latex/bxjscls/") + (base32 + "0bm9ab1j949v3ygnml8w0isx7yydq6jfq4ws3i0pf1rhs56m6rm0"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/bxjscls") + (synopsis "Japanese document class collection for all major engines") + (description + "This package provides an extended version of the Japanese document class +collection provided by @code{jsclasses}. While the original version supports +only pLaTeX and upLaTeX, the extended version also supports pdfLaTeX, XeLaTeX +and LuaLaTeX, with the aid of suitable packages that provide capability of +Japanese typesetting.") + (license license:bsd-2))) + (define-public texlive-bytefield (package (name "texlive-bytefield") |