diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:01:49 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:06:24 +0200 |
commit | f724881df01996eb8de4b0e5f37d3bdd11f21acb (patch) | |
tree | e0577cfc3c8d71bbb176739459af679bf6c99208 /gnu | |
parent | eddec664aade78421bdd63d26bcd798ec5fdf112 (diff) | |
download | guix-f724881df01996eb8de4b0e5f37d3bdd11f21acb.tar.gz |
gnu: Add texlive-sslides.
* gnu/packages/tex.scm (texlive-sslides): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 85856c8046..4825eabe0f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -96397,6 +96397,24 @@ graphics model, and control structures such as loops and conditionals are available.") (license license:lppl))) +(define-public texlive-sslides + (package + (name "texlive-sslides") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/sslides/" "tex/latex/sslides/") + (base32 + "0rplfdzzp15h3xsszzr7hcbb40kqd6bbqv8850ip8df4yd19mb8r"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/sslides") + (synopsis "Slides with headers and footers") + (description + "The class provides a variant of the LaTeX standard slides class, in which the +user may add headers and footers to the slide.") + (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 |