diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:04:54 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:07:29 +0200 |
commit | 5b88e5bbb58334aa55d28722c7292c1b05e999e8 (patch) | |
tree | a9995d869d49ba6dcfc652b656f19a3feee335ad /gnu | |
parent | d740c6f1af424a028491eb4449a028598f7fa357 (diff) | |
download | guix-5b88e5bbb58334aa55d28722c7292c1b05e999e8.tar guix-5b88e5bbb58334aa55d28722c7292c1b05e999e8.tar.gz |
gnu: Add texlive-worksheet.
* gnu/packages/tex.scm (texlive-worksheet): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 32 |
1 files changed, 32 insertions, 0 deletions
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 |