diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 15:17:56 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:37 +0200 |
commit | 71f2166aab4e2431d881c55a728878c8c3286673 (patch) | |
tree | 413fd7c3349f43bfea065370e1c0cae9f7dc8133 | |
parent | 7dcb4e9e15b6459e25bc25545371219491536255 (diff) |
gnu: Add texlive-truthtable.
* gnu/packages/tex.scm (texlive-truthtable): New variable.
-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 756cbe02bd..398c7004ac 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -14137,6 +14137,27 @@ automates most of the guidelines in the APA 7th edition style guide for citations and references.") (license license:lppl1.3c))) +(define-public texlive-truthtable + (package + (name "texlive-truthtable") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/lualatex/truthtable/" + "tex/lualatex/truthtable/") + (base32 + "193326nni5xnjkz9hhc1pjzkv0qrbz73irz6vixd8igpbavi2dzv"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/truthtable") + (synopsis + "Automatically generate truth tables for given variables and statements") + (description + "This LuaLaTeX package permits to automatically generate truth tables +given a table header. It supports a number of logical operations which can be +combined as needed.") + (license license:lppl1.3c))) + (define-public texlive-todonotes (package (name "texlive-todonotes") |