From 6c34e48291e9bb7ade857aec4e9781077e913bef Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:00:51 +0200 Subject: [PATCH] gnu: Add texlive-sfmath. * gnu/packages/tex.scm (texlive-sfmath): New variable. --- gnu/packages/tex.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ffe44ad298..3ea13635ca 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -95238,6 +95238,24 @@ (define-public texlive-sffms extensive documentation aimed at new LaTeX users.") (license license:lppl))) +(define-public texlive-sfmath + (package + (name "texlive-sfmath") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "tex/latex/sfmath/") + (base32 + "05m3whw5xkml48yx93j9h46qmspnr5hwsfszb59l4wy4jfj66zk4"))) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/sfmath") + (synopsis "Sans-serif mathematics") + (description + "@code{sfmath} is a simple package for sans serif maths in documents. After +including the package, all maths of the current document is displayed with +sans serif fonts.") + (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