From 74f1be32286e6909dfb80e9d761194a8b693d63f Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:46:38 +0200 Subject: [PATCH] gnu: Add texlive-continue. * gnu/packages/tex.scm (texlive-continue): New variable. --- gnu/packages/tex.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 7ff0b3d868..ebe729aa1b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -76977,6 +76977,28 @@ automatically, with a system for labelling/referencing. In addition, several families of constants (with different symbols) may be defined.") (license license:lppl))) +(define-public texlive-continue + (package + (name "texlive-continue") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/continue/" + "source/latex/continue/" + "tex/latex/continue/") + (base32 + "0c9yz5lm9y0jzad0mx36axww9p3b4gfbjdnddpky9w12kv0xn66f"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/continue") + (synopsis "Prints continuation marks on pages of multipage documents") + (description + "This package provides for a variety of continuation indicators on pages when +the text continues on the following page. The default is to only mark odd +pages, but all pages can be marked and the marking can be stopped or started +at any point.") + (license license:lppl1.3+))) + ;;; ;;; 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