From fdbc992fbba3d48ee9c0636665617ac2efd158cd Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:47:16 +0200 Subject: [PATCH] gnu: Add texlive-dashundergaps. * gnu/packages/tex.scm (texlive-dashundergaps): New variable. --- gnu/packages/tex.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index bb19feccc4..aa728dde85 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -77849,6 +77849,29 @@ (define-public texlive-dashbox of) vertical stacks of boxes.") (license license:lppl))) +(define-public texlive-dashundergaps + (package + (name "texlive-dashundergaps") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/dashundergaps/" + "source/latex/dashundergaps/" + "tex/latex/dashundergaps/") + (base32 + "0xwidvm2n1bbsv13apkd0q6sydpfkqsphc63gn0vvddh1rm63x82"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/dashundergaps") + (synopsis "Produce gaps that are underlined, dotted or dashed") + (description + "The package provides commands (@code{\\underline}, @code{\\dotuline} and +@code{\\dashuline}) each of which underlines its argument with one of the +styles the package is capable of. A phantom mode is provided, where the +underline (of whatever form) can serve for a fill-in block for student +evaluation sheets.") + (license license:lppl1.3c))) + ;;; ;;; 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