From 270da62d2eab5543d4b77e8a192d0f807d87789c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:04:10 +0200 Subject: [PATCH] gnu: Add texlive-ushort. * gnu/packages/tex.scm (texlive-ushort): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 376bd2f9c4..c7ef1b4b8a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -99082,6 +99082,26 @@ (define-public texlive-uri @code{\\uref}.") (license license:lppl1.3c))) +(define-public texlive-ushort + (package + (name "texlive-ushort") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/ushort/" "source/latex/ushort/" + "tex/latex/ushort/") + (base32 + "16pkrlb1v67ydjis2w3gz20i9rkmjnaidh47sxwpn62gpjgy01gw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ushort") + (synopsis "Shorter (and longer) underlines and underbars") + (description + "Some engineers need underlined or twice underlined variables for which the +usual @code{\\underline} is too long. This package provides a generic command +for creating underlines of various sizes and types.") + (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