From 9b6e7cfa9cc7b11e91ba39583c6920e88b0ed50c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:50:15 +0200 Subject: [PATCH] gnu: Add texlive-finstrut. * gnu/packages/tex.scm (texlive-finstrut): 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 7588219511..289cc37f69 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -82139,6 +82139,28 @@ (define-public texlive-fink @code{currfile} instead.") (license license:lppl))) +(define-public texlive-finstrut + (package + (name "texlive-finstrut") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/finstrut/" + "source/latex/finstrut/" + "tex/latex/finstrut/") + (base32 + "1zpyn492xq5h50jh6wwdlj10xwvnkdhxnljqjfkiw429lgaw7qfi"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/finstrut") + (synopsis "Adjust behaviour of the ends of footnotes") + (description + "The LaTeX internal command @code{\\@@finalstrut} is used automatically used +at the end of footnote texts to insert a strut to avoid mis-spacing of +multiple footnotes. Unfortunately the command can cause a blank line at the +end of a footnote. The package provides a solution to this problem.") + (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