diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:56:12 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:41 +0200 |
commit | d5c14e095599355f2c5140262b9f3a5b2e6f5dbb (patch) | |
tree | d7032fda31963c8f6180f1e943976fe446d020af /gnu/packages/tex.scm | |
parent | 768a486e9c342e8af48dadbd66bbde56793bffc2 (diff) |
gnu: Add texlive-rsfso.
* gnu/packages/tex.scm (texlive-rsfso): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 04fd58c338..2c84d3bab0 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -22475,6 +22475,28 @@ features in LaTeX.") LaTeX. Rosario is a set of four fonts provided by Hector Gatti.") (license license:lppl1.3c))) +(define-public texlive-rsfso + (package + (name "texlive-rsfso") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/rsfso/" "fonts/map/dvips/rsfso/" + "fonts/tfm/public/rsfso/" + "fonts/vf/public/rsfso/" "tex/latex/rsfso/") + (base32 + "1fm65p7k0kfiksap2f2g8lqmgdykmhq80ff5qgma4cnqa4sa3jza"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/rsfso") + (synopsis "Mathematical calligraphic font based on @code{rsfs}") + (description + "The package provides virtual fonts and LaTeX support files for +mathematical calligraphic fonts based on the @code{rsfs} Adobe Type 1 fonts, +with the slant substantially reduced. The output is quite similar to that +from the Adobe Mathematical Pi script font.") + (license license:lppl))) + (define-public texlive-rrgtrees (package (name "texlive-rrgtrees") |