diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:03:46 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:07:06 +0200 |
commit | 8fae9a645f7e196911b8f92f0aa4f107efcad242 (patch) | |
tree | 1cf1045edcac86828398b39f70f507c47de2439a /gnu/packages/tex.scm | |
parent | 4d6d61891573222f17eea0c1267b69b730b3dc58 (diff) |
gnu: Add texlive-turnthepage.
* gnu/packages/tex.scm (texlive-turnthepage): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-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 fb9d7fde45..0d3faa29a0 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -98630,6 +98630,26 @@ entries. It tends to produce a somewhat long and quite detailed document but may also be suitable to support a shorter resume.") (license license:cc-by-sa3.0))) +(define-public texlive-turnthepage + (package + (name "texlive-turnthepage") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/turnthepage/" + "tex/latex/turnthepage/") + (base32 + "0cm62cykmf7h6piazaa44fkhbkxds1ik6idpvg4f296y7jz6mjjh"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/turnthepage") + (synopsis "Provide ``turn page'' instructions") + (description + "The package prints a turn instruction at the bottom of odd-numbered +pages (except the last). This is a common convention for examination papers +and the like.") + (license license:lppl))) + ;;; ;;; 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 |