From 5b88e5bbb58334aa55d28722c7292c1b05e999e8 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:04:54 +0200 Subject: [PATCH] gnu: Add texlive-worksheet. * gnu/packages/tex.scm (texlive-worksheet): New variable. --- gnu/packages/tex.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 45e624144c..f6a016f2d6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -99857,6 +99857,38 @@ LaTeX's standard layout settings because they need a layout that resembles the usual ``wordlike'' output.") (license license:lppl))) +(define-public texlive-worksheet + (package + (name "texlive-worksheet") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/worksheet/" + "tex/latex/worksheet/") + (base32 + "0bciww1nnjgh7z7w3b5fwh0dr2hbsqw6ymdsx9xxm2ycrxx0lbxk"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/worksheet") + (synopsis "Easy creation of worksheets") + (description + "This package provides macros and an environment for easy worksheet creation: + +@itemize + +@item use the @code{exercise} environment for formating exercises in a simple, +efficient design; + +@item typeset customized and automatically numbered worksheet titles in the +same way as standard LaTeX titles (using @code{\\maketitle}); + +@item provide course and author information with +a @code{scrlayer}-@code{scrpage} based automated header; @end itemize + +This package conforms to different Babel languages. (Currently English, +French, and German are supported.)") + (license license:lppl1.3c))) + ;;; ;;; 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