From 5b5df6660b8d5abf529726e01760b26589e800c1 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 13 Jul 2023 10:36:19 +0200 Subject: [PATCH] gnu: Add texlive-tikz-karnaugh. * gnu/packages/tex.scm (texlive-tikz-karnaugh): New variable. --- gnu/packages/tex.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ef82b49870..15fa572868 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4491,6 +4491,29 @@ (define-public texlive-tikz-kalender @file{.events} files.") (license license:cc-by-sa4.0))) +(define-public texlive-tikz-karnaugh + (package + (name "texlive-tikz-karnaugh") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tikz-karnaugh/" + "tex/latex/tikz-karnaugh/") + (base32 + "091s9gavh8f4jya01nkjhzgh3f5b80ijiiaj7simnxawn60mh1z1"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tikz-karnaugh") + (synopsis "Typeset Karnaugh maps using TikZ") + (description + "The @code{tikz-karnaugh} package is a LaTeX package used to draw +Karnaugh maps. It uses TikZ to produce high quality graph from 1 to 12 +variables, but this upper limit depends on the TeX memory usage and can be +different for you. You can control colour, styles and distances. It can be +considered as an upgrade and extension of Andreas W. Wieland's @code{karnaugh} +package towards TikZ supporting.") + (license license:lppl1.0+))) + (define-public texlive-amiri (package (name "texlive-amiri")