diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 12:29:10 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:20 +0200 |
commit | ebf1df16c216914c24fdca928043eb23684a723b (patch) | |
tree | c3ee0fd807c7e2cbdd92fde5dd0c74dc820154b1 /gnu/packages | |
parent | 43d15fca608594a715b682b4a18c2f253a80b765 (diff) | |
download | guix-ebf1df16c216914c24fdca928043eb23684a723b.tar.gz |
gnu: Add texlive-titlepages.
* gnu/packages/tex.scm (texlive-titlepages): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d3e47543d5..25c3bb4273 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -25613,6 +25613,25 @@ package @code{thumbpdf.sty} to automatically include the thumbnails. This arrangement works with both plain TeX and LaTeX.") (license license:lppl1.3+))) +(define-public texlive-titlepages + (package + (name "texlive-titlepages") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/titlepages/") + (base32 + "17ib7rpb2dhb2m724x66fdzddv8cqd808wxy5kkvx0vb3rl27hyh"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/titlepages") + (synopsis "Sample titlepages, and how to code them") + (description + "The document provides examples of over two dozen title page designs +based on a range of published books and theses, together with the LaTeX code +used to create them.") + (license license:lppl))) + (define-public texlive-txfonts (package (name "texlive-txfonts") |