diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 19:43:22 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 20:25:28 +0200 |
commit | 5cf9c9364cd2c473e7abc721272547d6096ad21e (patch) | |
tree | de84f553a24a3430d68735e17503e4b8c1493113 /gnu | |
parent | b0705f602440848b53b4841bd4255437ac953d30 (diff) |
gnu: Add texlive-plari.
* gnu/packages/tex.scm (texlive-plari): New variable.
Diffstat (limited to 'gnu')
-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 db9d871773..9d896d829e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10453,6 +10453,25 @@ It is designed as a tool that is easy to use, with a lean syntax, native to LaTeX, and directly supporting PDF output format.") (license license:lppl1.3c))) +(define-public texlive-plari + (package + (name "texlive-plari") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/plari/" "source/latex/plari/" + "tex/latex/plari/") + (base32 + "07g4rn4nn5wvwqd39s0xnn35ijkamhzxi12icnha8vb0b564jwq8"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/plari") + (synopsis "Typesetting stageplay scripts") + (description + "Plari is a @code{report}-alike class, without section headings, and with +paragraphs vertically separated rather than indented.") + (license license:gpl3+))) + (define-public texlive-pm-isomath (package (name "texlive-pm-isomath") |