diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:03:33 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:07:01 +0200 |
commit | a3689883d488e4aa82413777cfe3b44d19146862 (patch) | |
tree | 0203378f05c31aae6d1032b98c263cbc03240d2d /gnu/packages | |
parent | efd08301cb5a118412c3bb6635245fede520312c (diff) | |
download | guix-a3689883d488e4aa82413777cfe3b44d19146862.tar.gz |
gnu: Add texlive-tokenizer.
* gnu/packages/tex.scm (texlive-tokenizer): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 76271b94ba..8e9ea045a4 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -98400,6 +98400,30 @@ active, implicit, and catcode-6 tokens as they are digested. The package provides a number of options for handling groups.") (license license:lppl1.3c))) +(define-public texlive-tokenizer + (package + (name "texlive-tokenizer") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tokenizer/" + "tex/latex/tokenizer/") + (base32 + "0gvqn1rc3aq7kzmg6vibwgcpvpzsqkdfbp5im43405zl3d7rzhb9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tokenizer") + (synopsis "Tokenizer for LaTeX") + (description + "This package provides a tokenizer for LaTeX. +@code{\\GetTokens@{Target1@}@{Target2@}@{Source@}} splits source into two +tokens at the first encounter of a comma. The first token is saved in a newly +created command with the name passed as @samp{<Target1>} and the second token +likewise. A package option @code{trim} causes leading and trailing space to +be removed from each token; with this option, the @code{\\TrimSpaces} command +is defined, which removes leading and trailing spaces from its argument.") + (license license:lppl))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar |