diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 16:38:01 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 19:42:07 +0200 |
commit | 2cb613673e1a9dc55c185fa1a62b190e4cf52b02 (patch) | |
tree | cacb4db63ac998fb2f9f5ce761b062b1dce2ff6a /gnu/packages | |
parent | 97a2a61e7517a44562e135f212dc17c9b03bbba8 (diff) | |
download | guix-2cb613673e1a9dc55c185fa1a62b190e4cf52b02.tar.gz |
gnu: Add texlive-ot-tableau.
* gnu/packages/tex.scm (texlive-ot-tableau): New variable.
Diffstat (limited to 'gnu/packages')
-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 2e2d39918a..e8e3f1ac2f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5261,6 +5261,27 @@ easily available. Especially, these symbols are used in scientific plots, but the potential user is allowed to use them in other ways.") (license license:lppl1.3+))) +(define-public texlive-ot-tableau + (package + (name "texlive-ot-tableau") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/ot-tableau/" + "tex/latex/ot-tableau/") + (base32 + "1f4pxs7k6zv7wk7v3739wznpbrmbihw5hrg5y7l3r0hh71rj9ipj"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ot-tableau") + (synopsis "Optimality Theory tableaux in LaTeX") + (description + "The package makes it easy to create beautiful optimality-theoretic tableaux. +The LaTeX source is visually very similar to a formatted tableau, which makes +working with the source code painless (well, less painful). A variety of +stylistic variants are available to suit personal taste.") + (license license:lppl1.3+))) + (define-public texlive-bibtex8 (package (name "texlive-bibtex8") |