diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-20 10:41:49 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-20 11:17:19 +0200 |
commit | 8227084dbe2041a4e4c24b6a69cb278cd4aeaaa0 (patch) | |
tree | 1f688c247da0d9528bd71575498359ca102e54b8 /gnu/packages/tex.scm | |
parent | 6547d3852b11966271535962110d9e68f50c95fc (diff) | |
download | guix-8227084dbe2041a4e4c24b6a69cb278cd4aeaaa0.tar.gz |
gnu: Add texlive-abbr.
* gnu/packages/tex.scm (texlive-abbr): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 60c0b0e7dc..be0548cf88 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1089,6 +1089,26 @@ works on TeX virtual fonts and @command{vpl2ovp} transforms a TeX font to an Omega one.") (license license:gpl3+))) +(define-public texlive-abbr + (package + (name "texlive-abbr") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/abbr/" "tex/generic/abbr/") + (base32 + "0zi5qkgr2nnb3jp5adv42d84w7yav1dw0lgg2vdxfsz03j1bmlsb"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/abbr") + (synopsis "Simple macros supporting abreviations for Plain and LaTeX") + (description + "The package provides some simple macros to support abbreviations in +Plain TeX or LaTeX. It allows writing, e.g., @samp{\\<TEX>} instead of +@samp{\\TeX}, hence frees users from having to escape space after +parameterless macros.") + (license license:public-domain))) + (define-public texlive-adhocfilelist (package (name "texlive-adhocfilelist") |