diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:02:00 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:06:28 +0200 |
commit | 8f8a0d333d4006ee25d08ae845ad7619f3520130 (patch) | |
tree | 9f44dc67b7c71e1ea99298ef040ceb6fb0da1446 | |
parent | 8b5d56358b6e2a4d441d484773120be3bbd57156 (diff) | |
download | guix-8f8a0d333d4006ee25d08ae845ad7619f3520130.tar.gz guix-8f8a0d333d4006ee25d08ae845ad7619f3520130.zip |
gnu: Add texlive-studenthandouts.
* gnu/packages/tex.scm (texlive-studenthandouts): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 47ab6890b1..0ca6004ecd 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -96612,6 +96612,31 @@ argument, at the bottom of the page; these stubs may be used (for example) for contact information.") (license license:gpl3+))) +(define-public texlive-studenthandouts + (package + (name "texlive-studenthandouts") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/studenthandouts/" + "tex/latex/studenthandouts/") + (base32 + "1n6h1dl6lyipaxngrlxqf8if2mv0fihvsz0kvgcn1nv002sjw9wi"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/studenthandouts") + (synopsis "Management and styling of student handout projects") + (description + "This package can be used to generate a single master document that contains +a set of individual student handouts. The package has two main functions. +First, it provides a simple framework for organizing handout source code, and +supplies a set of import management tools for selectively importing a subset +of the handouts into the master document. Selective import is convenient when +compilation of all of the handouts is unnecessary, for example when working on +a new handout. As a secondary feature, the package defines a basic visual +style for handouts. This style can be easily changed.") + (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 |