From 7c63a18a0987417775cbc4e128181fcde5576364 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:50:38 +0200 Subject: [PATCH] gnu: Add texlive-fnpara. * gnu/packages/tex.scm (texlive-fnpara): 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 62e8b0b18d..3da3d6435e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -82620,6 +82620,27 @@ labels. The package also provides a @code{\\Ref} command to make reference to such redefined labels at the start of a sentence.") (license license:lppl))) +(define-public texlive-fnpara + (package + (name "texlive-fnpara") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/fnpara/" "tex/latex/fnpara/") + (base32 + "0rc8r9dq23fvjygk44mpk74fzcdl55134sql91wc663z7yaz35xc"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/fnpara") + (synopsis "Footnotes in paragraphs") + (description + "Typeset footnotes in run-on paragraphs, instead of one above another; this is +a re-seating, for the LaTeX environment, of an example in the @emph{TeXbook}. +The same basic code, improved for use in e-TeX-based LaTeX, appears in the +comprehensive footnote package @code{footmisc}, and superior versions are also +available in the @code{manyfoot} and @code{bigfoot} packages.") + (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