diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-12 21:53:01 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:58 +0200 |
commit | 6e583b00b572409dd26af7948099c679bd35ffb4 (patch) | |
tree | 1c93e6506864c2a5dddd9ec3c3c0d1c45b3bff2e /gnu/packages | |
parent | a9a1d313400a9b143d559528c8b644ec43bb21e8 (diff) | |
download | guix-6e583b00b572409dd26af7948099c679bd35ffb4.tar.gz guix-6e583b00b572409dd26af7948099c679bd35ffb4.zip |
gnu: Add texlive-binarytree.
* gnu/packages/tex.scm (texlive-binarytree): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5e90b34c70..d5b1f82a32 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16224,6 +16224,30 @@ numeric precision). @code{bezierplot} also finds special points such as extreme points and inflection points and reduces the number of used points.") (license license:lppl1.3c))) +(define-public texlive-binarytree + (package + (name "texlive-binarytree") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/binarytree/" + "source/latex/binarytree/" + "tex/latex/binarytree/") + (base32 + "1lip6npfggc6p14hhpwn1g52xmyyb5rp34znb437frks4n1bk66s"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/binarytree") + (synopsis "Drawing binary trees using TikZ") + (description + "This package provides an easy but flexible way to draw binary trees +using TikZ. A path specification and the setting of various options determine +the style for each edge of the tree. There is support for the external +library of TikZ which does not affect externalization of the rest of the TikZ +figures in the document. There is an option to use automatic file naming: +useful if the trees are often moved around.") + (license license:lppl1.3+))) + (define-public texlive-gates (package (name "texlive-gates") |