From 66101a7d5087af187ec9694d9f30cbc625f4553e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:02:10 +0200 Subject: [PATCH] gnu: Add texlive-suppose. * gnu/packages/tex.scm (texlive-suppose): 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 2356a550ab..a25e423c76 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -96813,6 +96813,26 @@ (define-public texlive-substitutefont substitute for another one, using its @code{\\substitutefont} command.") (license license:lppl1.3+))) +(define-public texlive-suppose + (package + (name "texlive-suppose") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/suppose/" "tex/latex/suppose/") + (base32 + "0jll93kng5kkbl1f5yvclaclvxl5kcbsv76vbzmv2p0v271miybn"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/suppose") + (synopsis "Abbreviate the word ``Suppose''") + (description + "This package provides commands for abbreviating the word ``Suppose'' in six +fonts and with other variations. The author recommends only using these +commands when the immediately succeeding strings are mathematical in nature. +He does not recommend using them in formal work.") + (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