diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-10 23:57:39 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:48 +0200 |
commit | 20b1ca1ef897193bd82be801fe12609c0222b9b2 (patch) | |
tree | d4a75c8dd25ffa9a6f6c38aea8cba623f767b0c3 /gnu | |
parent | 500e9d9280afe5a3cb478c3936e2fcc904eea73c (diff) | |
download | guix-20b1ca1ef897193bd82be801fe12609c0222b9b2.tar guix-20b1ca1ef897193bd82be801fe12609c0222b9b2.tar.gz |
gnu: Add texlive-koma-script-examples.
* gnu/packages/tex.scm (texlive-koma-script-examples): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c48a3b78e1..aea47cd25c 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -29333,6 +29333,26 @@ not only with KOMA-Script classes but also with the standard classes.") (define-deprecated-package texlive-latex-koma-script texlive-koma-script) +(define-public texlive-koma-script-examples + (package + (name "texlive-koma-script-examples") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/koma-script-examples/") + (base32 + "1s95a3vgjxrn34cpcinkyr1yw2rj8s2973np71yxrwzi9dqdjpn1"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/koma-script-examples") + (synopsis "Examples from the KOMA-Script book") + (description + "This package contains some examples from the 6th edition of the book +@emph{KOMA-Script<, Eine Sammlung von Klassen und Paketen fur LaTeX2e} by +Markus Kohm, published by Lehmanns Media. There are no further descriptions +of these examples.") + (license license:lppl1.3c))) + (define-public texlive-atbegshi (package (name "texlive-atbegshi") |