diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-12 22:14:43 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:05 +0200 |
commit | e5cd7028d71cea924c2884ed50453f463e19fe43 (patch) | |
tree | b0b51b2a8835375cc8113025b795b6191a690825 /gnu/packages | |
parent | c6b1480151a675e265f669d686cd3a8eb3280d1e (diff) | |
download | guix-e5cd7028d71cea924c2884ed50453f463e19fe43.tar.gz guix-e5cd7028d71cea924c2884ed50453f463e19fe43.zip |
gnu: Add texlive-curve2e.
* gnu/packages/tex.scm (texlive-curve2e): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 1e22fe34e6..5b98d3e167 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16669,6 +16669,29 @@ order to emphasize on different aspects of your background. CurVe also comes with support for use with AUC-TeX.") (license license:lppl))) +(define-public texlive-curve2e + (package + (name "texlive-curve2e") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/curve2e/" "source/latex/curve2e/" + "tex/latex/curve2e/") + (base32 + "0fa2xp3yh1bv8ivxf48ywiwi9wjgq0bnvnyc2rcy73wczwilsyk4"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/curve2e") + (synopsis "Extensions for package @code{pict2e}") + (description + "The package extends the drawing capacities of the @code{pict2e} package +that serves as a LaTeX2e replacement for @code{picture} mode. In particular, +@code{curve2e} introduces new macros for lines and vectors, new specifications +for line terminations and joins, arcs with any angular aperture, arcs with +arrows at one or both ends, generic curves specified with their nodes and the +tangent direction at these nodes.") + (license license:lppl1.3c))) + (define-public texlive-gates (package (name "texlive-gates") |