From bf9976b8bb6253c71627b53b71ea157d3f8e52a4 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:56:36 +0200 Subject: [PATCH] gnu: Add texlive-nextpage. * gnu/packages/tex.scm (texlive-nextpage): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5baeec2578..4ca820b506 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -90119,6 +90119,25 @@ (define-public texlive-newvbtm @samp{Tab} emulation.") (license license:lppl))) +(define-public texlive-nextpage + (package + (name "texlive-nextpage") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "tex/latex/nextpage/") + (base32 + "1p9dvw7fqspkg6hk6rdmsb5k5m9mkj0kz5a47wg5dgfqgrqpixf8"))) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/nextpage") + (synopsis "Generalisations of the page advance commands") + (description + "This package provides @code{\\clearpage} and @code{\\newpage} variants that +guarantee to end up on even/odd numbered pages; these four commands all have +an optional argument whose content will be placed on any empty page +generated.") + (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