From 95f4a72980ac873806b2dd473d1a7bb0dd4222bd Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:03:49 +0200 Subject: [PATCH] gnu: Add texlive-twoup. * gnu/packages/tex.scm (texlive-twoup): 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 400c482f55..e5e6f74dad 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -98669,6 +98669,28 @@ Page numbers appear on the included pages, and not on the landscape container page.") (license license:public-domain))) +(define-public texlive-twoup + (package + (name "texlive-twoup") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/twoup/" "source/latex/twoup/" + "tex/latex/twoup/") + (base32 + "0s33w3mvpkw2jy2vxfbbagasxc37vi09dlkn9kbi0917mz8k5i70"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/twoupltx") + (synopsis "Print two virtual pages on each physical page") + (description + "Some tools massage PostScript into booklet and two-up printing --- that is, +printing two logical pages side by side on one side of one sheet of paper. +However, some LaTeX preliminaries are necessary to use those tools. The +@code{twoup} package provides such preliminaries and gives advice on how to +use the PostScript tools.") + (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