From 4f9d683bb1e8c6c25c9844cc73d56fc5107170bc Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:02:35 +0200 Subject: [PATCH] gnu: Add texlive-tabularew. * gnu/packages/tex.scm (texlive-tabularew): 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 d2b2e9cecd..116e846311 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -97278,6 +97278,27 @@ (define-public texlive-tabularcalc horizontally or vertically and is fully customizable.") (license license:lppl))) +(define-public texlive-tabularew + (package + (name "texlive-tabularew") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tabularew/" + "source/latex/tabularew/" + "tex/latex/tabularew/") + (base32 + "02xral8h2qbwm8mr4y701mrigk72x42kgjl9zki72qnx95fcy579"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tabularew") + (synopsis "Variation on the @code{tabular} environment") + (description + "The package offers a modification of the @code{tabular} environment, which +deals with the problem of column heads that are significantly wider than the +body of the column.") + (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