From 29c28811b934874defaf4c600e2addd6439476a7 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:02:16 +0200 Subject: [PATCH] gnu: Add texlive-swfigure. * gnu/packages/tex.scm (texlive-swfigure): 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 abba1ee0d3..53feb7325b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -96918,6 +96918,27 @@ (define-public texlive-svninfo typeset documents.") (license license:lppl1.0+))) +(define-public texlive-swfigure + (package + (name "texlive-swfigure") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/swfigure/" + "source/latex/swfigure/" + "tex/latex/swfigure/") + (base32 + "1w2s9wil773dypa7xllbvawbdk41qdfzwy19pya17z8qp8csjqvh"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/swfigure") + (synopsis "Insert large images that do not fit into a single page") + (description + "This package defines five different display modes in order to place in +a document large figures that do not fit into a single page. A single user +macro is defined to handle all five display modes.") + (license license:lppl1.3c))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar