From 86c6ba99f6e300e6ea7a4bee466912cb2bbe2a2c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 21 Aug 2023 12:44:17 +0200 Subject: [PATCH] gnu: Add texlive-mpfonts. * gnu/packages/tex.scm (texlive-mpfonts): New variable. --- gnu/packages/tex.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 28e5eec4ff..88171f8e1f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -18882,6 +18882,35 @@ (define-public texlive-montserrat signage in the neighborhood of Montserrat.") (license (list license:silofl1.1 license:lppl1.3+)))) +(define-public texlive-mpfonts + (package + (name "texlive-mpfonts") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/mpfonts/" + "fonts/map/dvips/mpfonts/" + "fonts/type3/mpfonts/") + (base32 + "1z6pdjwi14fq6y1s39gxyqlpg6p5j09psjv1cyp7xjwjffdikgaf"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/mpfonts") + (synopsis "Computer Modern Type 3 fonts converted using MetaPost") + (description + "The Computer Modern fonts are available in Type 1 format, but these +renditions are somewhat thin and spindly, and produce much lighter results +than the originals. These fonts are conversions to Type 3 fonts, done +entirely in MetaPost; they are vector fonts which are a direct conversion from +the original Metafont files, so they are the design most authentic to the +originals. However, these fonts, because they are PostScript Type 3 fonts, +are not suitable for on-screen reading, and should probably only be used for +printing.") + (license (list license:knuth + license:lppl1.2+ + license:silofl1.1 + license:public-domain)))) + (define-public texlive-multibib (package (name "texlive-multibib")