From 8757ea26fade3e7155f6627ca46aa6059d0b4e41 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:00:30 +0200 Subject: [PATCH] gnu: Add texlive-sdrt. * gnu/packages/tex.scm (texlive-sdrt): 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 2a8a052b35..c4da6cef31 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -94847,6 +94847,27 @@ questions, range questions, @end itemize") (license license:lppl1.3c))) +(define-public texlive-sdrt + (package + (name "texlive-sdrt") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/sdrt/" "tex/latex/sdrt/") + (base32 + "1lv0fv3af0z5r7ca422dymimf6lkc55ylqhaq8hpq8ynz0qh7zl0"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/sdrt") + (synopsis + "Macros for @acronym{SDRT, Segmented Discourse Representation Theory}") + (description + "The package provides macros to produce the Box notation of SDRT (and DRT), to +draw trees representing discourse relations, and finally to have an easy access +to various mathematical symbols used in that theory, mostly with automatic +mathematics mode, so they work the same in formulae and in text.") + (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