diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 15:58:28 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:05:11 +0200 |
commit | c3951e72ee3a4531e83b7e7d47bf5aefaa8a3bf7 (patch) | |
tree | 59c21d72782118e559ffcf1cfa8efa471ffc9c35 | |
parent | 2b3a2e4b9120cf8cba998f8bc330e04fd0955eae (diff) | |
download | guix-c3951e72ee3a4531e83b7e7d47bf5aefaa8a3bf7.tar.gz |
gnu: Add texlive-photobook.
* gnu/packages/tex.scm (texlive-photobook): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 38b7d6df1d..d552cc7983 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -92403,6 +92403,27 @@ have to be placed as floats, they can also be placed as boxes, with captions and photographer line still being available.") (license license:lppl))) +(define-public texlive-photobook + (package + (name "texlive-photobook") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/photobook/" + "tex/latex/photobook/") + (base32 + "0blwjpmjgxdnhsbfans3lb3q6p1y3s4gc7jz30c9mccakk4ib0xx"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/photobook") + (synopsis "Document class for typesetting photo books") + (description + "The @code{photobook} LaTeX document class extends the book class defining +a set of parameters, meta-macros, macros and environments with reasonable +defaults to help typeset, build and print books mainly based on visual/image +content.") + (license license:bsd-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 |