diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-12 22:22:52 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:10 +0200 |
commit | a5481f7cef8e710428b334fbe9c4fbcb1ad0a873 (patch) | |
tree | e4756dc1fb92d1b7eaca53d3ca6cc84d925e684e /gnu/packages/tex.scm | |
parent | 256b5153f89f65c8993fda840908f423ea23aa34 (diff) | |
download | guix-a5481f7cef8e710428b334fbe9c4fbcb1ad0a873.tar.gz guix-a5481f7cef8e710428b334fbe9c4fbcb1ad0a873.zip |
gnu: Add texlive-layaureo.
* gnu/packages/tex.scm (texlive-layaureo): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-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 2a0c3e8967..ca16a9975c 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -19597,6 +19597,27 @@ It is particularly useful in the page footer that says: @samp{Page N of M}.") (define-deprecated-package texlive-latex-lastpage texlive-lastpage) +(define-public texlive-layaureo + (package + (name "texlive-layaureo") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/layaureo/" "source/latex/layaureo/" + "tex/latex/layaureo/") + (base32 + "021dcqv8flqv665falbiq7ga56zpihzrdi6kc59nbk0l4jmxf1w9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/layaureo") + (synopsis "Improve the A4 page layout") + (description + "This package produces a wide page layout for documents that use A4 paper +size. Moreover, LayAureo provides both a simple hook for leaving an empty +space, which is required if pages are bundled by a press binding, and an +option called @code{big} that forces typearea to become maximum.") + (license license:lppl))) + (define-public texlive-tabto-ltx (package (name "texlive-tabto-ltx") |