From 7f1af5fba8ec0881f8654963ec7b6b89346f7594 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:57:24 +0200 Subject: [PATCH] gnu: Add texlive-pagecont. * gnu/packages/tex.scm (texlive-pagecont): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e71b04e3ce..82b0611fb4 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -91092,6 +91092,27 @@ (define-public texlive-padcount makes it suitable for, among other things, counters of all kinds.") (license license:lppl1.3c))) +(define-public texlive-pagecont + (package + (name "texlive-pagecont") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/pagecont/" + "source/latex/pagecont/" + "tex/latex/pagecont/") + (base32 + "1n2axjznak2mlajk5m9jgdxzn7n3jmaiv0hsx2mk165630h4vaax"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pagecont") + (synopsis "Page numbering that continues between documents") + (description + "The package provides the facility that several documents can be typeset +independently with page numbers in sequence, as if they were a single +document.") + (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