diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:02:43 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:06:43 +0200 |
commit | 9aa158e3363e76a0b3a628a3338b32186364bb51 (patch) | |
tree | f61018362b4a380ebbe5bd4c209d75f53f354484 /gnu | |
parent | ab7284fbcdf7d997a7d5dd5538b16792217380fd (diff) | |
download | guix-9aa158e3363e76a0b3a628a3338b32186364bb51.tar.gz |
gnu: Add texlive-tasks.
* gnu/packages/tex.scm (texlive-tasks): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 2e0ac97423..4876026f03 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -97442,6 +97442,26 @@ a new one --- it is an experiment to find out whether the new problem is less ba previous work).") (license license:lppl1.3+))) +(define-public texlive-tasks + (package + (name "texlive-tasks") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tasks/" "tex/latex/tasks/") + (base32 + "1sfgnwzpyfyvilyz7j12d6wql54rlcami682b32rf6xphxjs0z3b"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tasks") + (synopsis "Horizontally columned lists") + (description + "The reason for the creation of the @code{tasks} environment was an unwritten +agreement in German maths textbooks (especially (junior) high school +textbooks) to organize exercises in columns counting horizontally rather than +vertically. This is what the @code{tasks} package helps to achieve.") + (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 |