From 43b75f41cbfa0bdd05673705c8b27ae382c1c22e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:00:01 +0200 Subject: [PATCH] gnu: Add texlive-rotfloat. * gnu/packages/tex.scm (texlive-rotfloat): New variable. --- gnu/packages/tex.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 1dcf31b154..9845962354 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -94242,6 +94242,31 @@ (define-public texlive-romannum fonts may find this package useful.") (license license:lppl))) +(define-public texlive-rotfloat + (package + (name "texlive-rotfloat") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/rotfloat/" + "source/latex/rotfloat/" + "tex/latex/rotfloat/") + (base32 + "1m0xmy3yip4j62rby0fqri2dk4jl75cph1y27r3x129l4kzyblvw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/rotfloat") + (synopsis "Rotate floats") + (description + "The @code{float} package provides commands to define new floats of various styles +(plain, boxed, ruled, and userdefined ones); the @code{rotating} package +provides new environments (@code{sidewaysfigure} and @code{sidewaystable}) +which are rotated by 90 or 270 degrees. But what about new rotated floats, +e.g., a rotated ruled one? This package makes this possible; it builds +a bridge between the two packages and extends the commands from the float +package to define rotated versions of the new floats, too.") + (license license:lppl))) + ;;; ;;; 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