From 6aefc4b8593ced5c7a0324aa9f1c5555c0d37965 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:53:59 +0200 Subject: [PATCH] gnu: Add texlive-leading. * gnu/packages/tex.scm (texlive-leading): 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 0e9185b8a6..3c1660ff08 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -86869,6 +86869,27 @@ a counter. The @code{keyval} package is used for the user to provide values for the range and a seed, and for the name of the counter to be used.") (license license:lppl))) +(define-public texlive-leading + (package + (name "texlive-leading") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/leading/" "source/latex/leading/" + "tex/latex/leading/") + (base32 + "0fhdld6bagjyg0fs6c4gy0yp1p6wcrldqrs4hkrhylgrs2ilana9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/leading") + (synopsis "Define leading with a length") + (description + "The package defines a command @code{\\leading}, whose argument specifies the +nominal distance between consecutive baselines of typeset text. The command +replaces the rather more difficult LaTeX command @code{\\linespread}, where +the leading is specified by reference to the font size.") + (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