diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 20:04:47 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 11:22:54 +0200 |
commit | 2445aa1ada1c94d81d1974ea0b46244ea1a2245c (patch) | |
tree | d9f1bbe3eb592cf1d2411dcd1da4f5ede1dc166c | |
parent | a626f256ac0b4e65f2f1a8077e6f199fadcf4778 (diff) | |
download | guix-2445aa1ada1c94d81d1974ea0b46244ea1a2245c.tar guix-2445aa1ada1c94d81d1974ea0b46244ea1a2245c.tar.gz |
gnu: Add texlive-texproposal.
* gnu/packages/tex.scm (texlive-texproposal): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 16601d42b5..c1b74ffb53 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -20962,6 +20962,38 @@ application is powerful enough to generate any text-based structure, given that a corresponding template exists.") (license license:bsd-3))) +(define-public texlive-texproposal + (package + (name "texlive-texproposal") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/texproposal/") + (base32 + "1yxb3yagljsdp4s07fzd6498889i7cscch68fb77jbfc2z4srvsy"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/texproposal") + (synopsis "Proposal prototype for LaTeX promotion in Chinese universities") + (description + "This package contains the original source code and necessary attachment +of the document @emph{Proposal for Offering TeX Courses and Relevant Resources +in Chongqing University}. This proposal could be helpful if one is +considering to suggest their (Chinese) university or company to use TeX (or +LaTeX, or XeLaTeX} as a typesetting system. + +The present proposal mainly explains the importance and necessity of +introducing TeX, a typesetting system often used in academic writing, to +students and teachers. This proposal starts from a brief introduction of TeX, +then steps further into its fascinating application to academic writing and +dissertation formatting. Finally, a set of possible implementation strategies +with regard to the proper introduction of TeX and relevant resources to our +university, is proposed.") + ;; The content of the project itself is released under CC-BY 4.0 terms, + ;; but the underlying code used to format and display that content is + ;; licensed under the Expat license. + (license (list license:cc-by4.0 license:expat)))) + (define-public texlive-texware (package (name "texlive-texware") |