diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-12 21:52:03 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:57 +0200 |
commit | 2ee9d5f0d76fcc237ab0a54f719275e63baf68a6 (patch) | |
tree | 0d4c2befea495c37c8c9a98eba7cb36597526dd2 /gnu/packages/tex.scm | |
parent | fb1c04d05e7c8be9d068ee6af197da6cce5c4b54 (diff) | |
download | guix-2ee9d5f0d76fcc237ab0a54f719275e63baf68a6.tar.gz guix-2ee9d5f0d76fcc237ab0a54f719275e63baf68a6.zip |
gnu: Add texlive-autoarea.
* gnu/packages/tex.scm (texlive-autoarea): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e454ae7d70..574776bb0d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16115,6 +16115,26 @@ Niepraschk. The package allows the use of LuaLaTeX together with PostScript related code, e.g., PSTricks.") (license license:lppl1.3c))) +(define-public texlive-autoarea + (package + (name "texlive-autoarea") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/autoarea/" "tex/latex/autoarea/") + (base32 + "09a9wiihb397ljasnkxrqygsi34bd9a5spq8h3njf6awra2x2m6c"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pictex-autoarea") + (synopsis "Automatic computation of bounding boxes with PiCTeX") + (description + "This package makes PiCTeX recognize lines and arcs in determining the +bounding box of a picture. The bounding box is essential for proper placement +of a picture between running text and margins and for keeping the running text +away.") + (license license:lppl))) + (define-public texlive-barracuda (package (name "texlive-barracuda") |