From b243fbfd5584009286adde5a131290b6bcbc9e3c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:02:02 +0200 Subject: [PATCH] gnu: Add texlive-subdepth. * gnu/packages/tex.scm (texlive-subdepth): 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 1cbc2d97ab..53d8e583d4 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -96658,6 +96658,27 @@ (define-public texlive-styledcmd expandable and protected commands.") (license license:gpl3+))) +(define-public texlive-subdepth + (package + (name "texlive-subdepth") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/subdepth/" + "source/latex/subdepth/" + "tex/latex/subdepth/") + (base32 + "1h79qghibgnfz2savf158c6qkliizif95azma905rpwhz06zw1f9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/subdepth") + (synopsis "Unify maths subscript height") + (description + "This package is based on code to equalise the height of subscripts in maths. +The default behaviour is to place subscripts slightly lower when there is +a superscript as well, but this can look odd in some situations.") + (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