diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 16:49:22 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:11:13 +0200 |
commit | a386f615e03f3b1d966270fb35c4b134816986e6 (patch) | |
tree | 9b36ceb305dde4175607a33ac0a7184f23edca1d /gnu | |
parent | bfab9bf8186102c5052efad5ddb27aae2ad80815 (diff) | |
download | guix-a386f615e03f3b1d966270fb35c4b134816986e6.tar.gz |
gnu: Add texlive-topletter.
* gnu/packages/tex.scm (texlive-topletter): New variable.
Diffstat (limited to 'gnu')
-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 8f93845115..4d2a6748c3 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -29906,6 +29906,28 @@ and margins. It standardizes a document layout intended for formal documents.") (license license:bsd-3))) +(define-public texlive-topletter + (package + (name "texlive-topletter") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/topletter/" + "source/latex/topletter/" + "tex/latex/topletter/") + (base32 + "0s9yq65wwcw6mg09lk3x756iski1k55skik3n45l9wdbdz81w1p9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/topletter") + (synopsis "Letter class for the @emph{Politecnico di Torino}") + (description + "This package provides a LaTeX class for typesetting letters conforming +to the official Corporate Image guidelines for the @emph{Politecnico di +Torino}. The class can be used for letters written in Italian and in +English.") + (license license:asl2.0))) + (define-public texlive-tpslifonts (package (name "texlive-tpslifonts") |