From 59b2ddfd499db8118a55232e1ce377491400166b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:03:16 +0200 Subject: [PATCH] gnu: Add texlive-threadcol. * gnu/packages/tex.scm (texlive-threadcol): New variable. --- gnu/packages/tex.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 311519af6c..807d2a554b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -98078,6 +98078,31 @@ (define-public texlive-thmtools a single macro call.") (license license:lppl1.3c))) +(define-public texlive-threadcol + (package + (name "texlive-threadcol") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/threadcol/" + "source/latex/threadcol/" + "tex/latex/threadcol/") + (base32 + "0mkwcxhiajak2xhq52x3bn134sgylqk6bi3fswg4nvvz66511xc9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/threadcol") + (synopsis "Organize document columns into PDF \"article thread\"") + (description + "The package combines a document's columns into a PDF ``article thread''. +PDF readers that support this mechanism can be instructed to scroll +automatically from column to column, which facilitates on-screen reading of +two-column documents. Even for single-column documents, threadcol supports +the creation of multiple article threads, which help organize discontiguous +but logically related regions of text into a form that the user can scroll +through as if its contents were contiguous.") + (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