diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 16:52:26 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 19:42:30 +0200 |
commit | c8228817fc763a6188e67b7ab70e86ca8260dde2 (patch) | |
tree | 66d71875f230deffa4752129ecab587446464da6 /gnu/packages | |
parent | 9fc353989728cdb962e489987dc19d852494ea90 (diff) | |
download | guix-c8228817fc763a6188e67b7ab70e86ca8260dde2.tar.gz guix-c8228817fc763a6188e67b7ab70e86ca8260dde2.zip |
gnu: Add texlive-subtext.
* gnu/packages/tex.scm (texlive-subtext): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 4f0c741561..fdd7951e25 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6498,6 +6498,25 @@ created.") combinations of left and right sub- and superscripts.") (license license:lppl))) +(define-public texlive-subtext + (package + (name "texlive-subtext") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/subtext/" "tex/latex/subtext/") + (base32 + "0wpb4087acwsgnsc1zw6ivqaqgdsq90zm63bgmrk77ban54qsqv0"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/subtext") + (synopsis "Easy text-style subscripts in math mode") + (description + "This LaTeX package gives easy access to text-style subscripts in math +mode by providing an optional argument to @samp{_}. This is implemented by +using the @code{\\text@{@}} command from the @code{amstext} package.") + (license license:gpl3))) + (define-public texlive-bibtex8 (package (name "texlive-bibtex8") |