From 9a37cbcf2e50e8978da294df70113204bcaa1757 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:02:26 +0200 Subject: [PATCH] gnu: Add texlive-tablefootnote. * gnu/packages/tex.scm (texlive-tablefootnote): New variable. --- gnu/packages/tex.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index b1d68cf62b5..7ceb8fe2c4b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -97087,6 +97087,28 @@ boxes may be absolute, or as a percentage of the width; various other controls are available.") (license license:lppl))) +(define-public texlive-tablefootnote + (package + (name "texlive-tablefootnote") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tablefootnote/" + "source/latex/tablefootnote/" + "tex/latex/tablefootnote/") + (base32 + "1179jcgjnsh6plk4kfcyyczjx0xcn2cjdc413kfz4pxmx7592jdn"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tablefootnote") + (synopsis "Permit footnotes in tables") + (description + "The package provides the command @code{\\tablefootnote} to be used in +a @code{table} or @code{sidewaystable} environment, where @code{\\footnote} +will not work (and when using @code{\\footnotemark} and @code{\\footnotetext}, +and adjusting the counter as necessary, is too much work).") + (license license:lppl1.3+))) + ;;; ;;; 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