From 1e81d36897da42ef8dbf34f50bc9cf66218d7681 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 30 Jul 2023 15:51:47 +0200 Subject: [PATCH] gnu: Add texlive-drawmatrix. * gnu/packages/tex.scm (texlive-drawmatrix): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5b520e10dc..02087be300 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3200,6 +3200,27 @@ (define-public texlive-dowith work with other formats as well.") (license license:lppl1.3+))) +(define-public texlive-drawmatrix + (package + (name "texlive-drawmatrix") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/drawmatrix/" + "source/latex/drawmatrix/" + "tex/latex/drawmatrix/") + (base32 + "14y9xah06ya8krg7ckmhbmxs113g1vw0x2ryldapww7qi08i78yx"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/drawmatrix") + (synopsis "Draw visual representations of matrices in LaTeX") + (description + "The package provides macros to visually represent matrices. Various +options allow to change the visualizations, e.g., drawing rectangular, +triangular, or banded matrices.") + (license license:expat))) + (define-public texlive-bibtex8 (package (name "texlive-bibtex8")