ngz pushed a commit to branch master
in repository guix.
commit ab0a27520a2cf8066394a479a44ccdf31d801259
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Sun Jul 30 16:27:28 2023 +0200
gnu: Add texlive-karnaugh-map.
* gnu/packages/tex.scm (texlive-karnaugh-map): New variable.
---
gnu/packages/tex.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 7e0c815b54..aedb1778c1 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -4250,6 +4250,28 @@ These macros can typeset Karnaugh-Maps and Veitch-Charts
with up to ten
variables.")
(license license:lppl1.0+)))
+(define-public texlive-karnaugh-map
+ (package
+ (name "texlive-karnaugh-map")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/karnaugh-map/"
+ "source/latex/karnaugh-map/"
+ "tex/latex/karnaugh-map/")
+ (base32
+ "01gcffk9vys81b0ad1rxlqnq8i8yflfhby43fr46h7li6p08rx09")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (home-page "https://ctan.org/pkg/karnaugh-map")
+ (synopsis "LaTeX package for drawing Karnaugh maps with up to 6 variables")
+ (description
+ "This package draws Karnaugh maps with 2, 3, 4, 5, and 6 variables. It
+also contains commands for filling the karnaugh map with terms
+semi-automatically or manually. Last but not least it contains commands for
+drawing implicants on top of the map.")
+ (license license:cc-by-sa3.0)))
+
(define-public texlive-bibtex8
(package
(name "texlive-bibtex8")