From 335116d786a33d15e00509217d0bd04f0dd3f4b0 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:57:27 +0200 Subject: [PATCH] gnu: Add texlive-pagerange. * gnu/packages/tex.scm (texlive-pagerange): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 104e1e4117..a28d238456 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -91170,6 +91170,26 @@ (define-public texlive-pagelayout graphics.") (license license:lppl1.3c))) +(define-public texlive-pagerange + (package + (name "texlive-pagerange") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/pagerange/" + "tex/latex/pagerange/") + (base32 + "07ddakr8p8gjzyxs3b6kl000ij13y9i4pdbxay0ghddx36z7z620"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pagerange") + (synopsis "Flexible and configurable page range typesetting") + (description + "The package defines a command @code{\\pagerange} that typesets ranges of page +numbers, expanding them (e.g., adding first or last page numbers) and +standardising them.") + (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