From 80956eabe8cab9f470acb9d34c9e4933505d89c5 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:56:06 +0200 Subject: [PATCH] gnu: Add texlive-mtgreek. * gnu/packages/tex.scm (texlive-mtgreek): 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 b35dbcfdb5..1712617656 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -89505,6 +89505,27 @@ approximation to @acronym{APA, American Psychological Association} citation and reference style.") (license license:public-domain))) +(define-public texlive-mtgreek + (package + (name "texlive-mtgreek") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/mtgreek/" "source/latex/mtgreek/" + "tex/latex/mtgreek/") + (base32 + "1c4npkwx6apdg22ivkvc16scdlr06499idax351s1jq6sdw0yzpb"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/mtgreek") + (synopsis "Use italic and upright greek letters with mathtime") + (description + "This package is an add-on to the MathTime a style to provide TeX support for +the use of the MathTime fonts. The MathTime package has uppercase Greek +letters hardwired to be upright and only upright; this package provides +a switch to choose between the two kinds of Greek uppercase letters.") + (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