diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 16:45:45 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 19:42:20 +0200 |
commit | ae4d3bd5bbc7f677202a49f46c9c4c8f9e14fc9b (patch) | |
tree | 39db4d923c6a52bf97fcd7c68b7ac15e88b8983c /gnu/packages | |
parent | 386531d46f16bcb411d945b75e824b93f2f2f143 (diff) | |
download | guix-ae4d3bd5bbc7f677202a49f46c9c4c8f9e14fc9b.tar.gz guix-ae4d3bd5bbc7f677202a49f46c9c4c8f9e14fc9b.zip |
gnu: Add texlive-sciposter.
* gnu/packages/tex.scm (texlive-sciposter): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5f00c22bd1..82acee16e1 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5949,6 +5949,28 @@ their calculations or simulations into LaTeX projects. The package is also capable of overloading the Sweave User Manual and SASweave packages.") (license license:lppl1.3+))) +(define-public texlive-sciposter + (package + (name "texlive-sciposter") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/sciposter/" + "tex/latex/sciposter/") + (base32 + "1d4bfzx08df0vx805rhmcsl9b79lqglqbzg0i8y4rk9z9qbaajrq"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/sciposter") + (synopsis "Make posters of ISO A3 size and larger") + (description + "This collection of files contains LaTeX packages for posters of ISO A3 +size and larger (ISO A0 is the default size). American paper sizes and custom +paper are supported. In particular, @file{sciposter.cls} defines a document +class which allows cutting and pasting most of an article to a poster without +any editing (save reducing the size).") + (license license:lppl))) + (define-public texlive-bibtex8 (package (name "texlive-bibtex8") |