From bf1754eca0793a2dc40fa6ea177afbea08c1ff2e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:03:47 +0200 Subject: [PATCH] gnu: Add texlive-twoinone. * gnu/packages/tex.scm (texlive-twoinone): 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 0d3faa29a0..400c482f55 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -98650,6 +98650,25 @@ (define-public texlive-turnthepage and the like.") (license license:lppl))) +(define-public texlive-twoinone + (package + (name "texlive-twoinone") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/twoinone/" "tex/latex/twoinone/") + (base32 + "0asph7md8s5x2y8f18cczca906fc5wkh29ydabs43v3mn17lrkpw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/twoinone") + (synopsis "Print two pages on a single page") + (description + "The package is for printing two pages on a single (landscape) A4 page. +Page numbers appear on the included pages, and not on the landscape container +page.") + (license license:public-domain))) + ;;; ;;; 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