diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 19:53:08 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 11:22:53 +0200 |
commit | 8afc055104f319054d25bcee426e7a6c064d1ca2 (patch) | |
tree | 66909ce3c252a6eae4c3ffff7115b94926cc8b12 | |
parent | a26fb20d74f05b299f8183b13f886b3d04ff136f (diff) | |
download | guix-8afc055104f319054d25bcee426e7a6c064d1ca2.tar guix-8afc055104f319054d25bcee426e7a6c064d1ca2.tar.gz |
gnu: Add texlive-install-latex-guide-zh-cn.
* gnu/packages/tex.scm (texlive-install-latex-guide-zh-cn): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ab444fe919..62ebc9d0c2 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6444,6 +6444,24 @@ conference proceedings. The class uses the XePersian package.") installed.") (license license:lppl1.3c))) +(define-public texlive-install-latex-guide-zh-cn + (package + (name "texlive-install-latex-guide-zh-cn") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/install-latex-guide-zh-cn/") + (base32 + "1mb6d92c7llz5cpkir4d1wf0l2yvmskl0kxgch9r5zjmb67qflin"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/install-latex-guide-zh-cn") + (synopsis "Short introduction to LaTeX installation written in Chinese") + (description + "This package will introduce the operations related to installing TeX +Live and mainly introducing command line operations, in Chinese.") + (license license:lppl1.3c))) + (define-public texlive-interval (package (name "texlive-interval") |