diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 12:34:42 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:21 +0200 |
commit | 1c58f664a8c9c0fcd83ceb078e70de9091a04cb6 (patch) | |
tree | 98db84c8e4e57ec37450dc132567564783005945 /gnu | |
parent | 75f469300c0e4edd08d073bb51341ef6b2778505 (diff) |
gnu: Add texlive-undergradmath.
* gnu/packages/tex.scm (texlive-undergradmath): New variable.
Diffstat (limited to 'gnu')
-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 6da79522b2..06fdf08a47 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10613,6 +10613,24 @@ from Adobe's basic set.") documentation from TeX files. It is part of the LaTeX base.") (license license:lppl1.3+))) +(define-public texlive-undergradmath + (package + (name "texlive-undergradmath") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/undergradmath/") + (base32 + "1z8my3fwqc8rfc1843j7lcmfka2023z9k0js4ygh1m8kilc2nrr7"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/undergradmath") + (synopsis "LaTeX Math for undergraduates cheat sheet") + (description + "This is a cheat sheet for writing mathematics with LaTeX. It is aimed +at US undergraduates.") + (license license:cc-by-sa4.0))) + (define-public texlive-underscore (package (name "texlive-underscore") |