diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:43:14 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:27 +0200 |
commit | 7f9ca8d7b82a86c6b39371f297025dbb6fb0c616 (patch) | |
tree | 1525780f9f21ad36755478a78c5d92487363b413 /gnu | |
parent | 3502cbe62c307ba88ea8056f7611354be2f85356 (diff) | |
download | guix-7f9ca8d7b82a86c6b39371f297025dbb6fb0c616.tar.gz |
gnu: Add texlive-missaali.
* gnu/packages/tex.scm (texlive-missaali): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 20751daf07..bf32914b17 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -18723,6 +18723,38 @@ systems of equations and small matrices, @code{displaymath} in double columns for long calculations.") (license license:lppl1.3+))) +(define-public texlive-missaali + (package + (name "texlive-missaali") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/missaali/" + "fonts/opentype/public/missaali/" + "tex/latex/missaali/") + (base32 + "1wa6knx1s82q86rl2icd9nqlh5ppa3636f28ns6g1l5fag6wd283"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/missaali") + (synopsis "Late medieval OpenType Textura font") + (description + "This package contains the OpenType Textura font Missaali and a style +file for using it with XeLaTeX. Textura is a typeface based on the +@emph{textus quadratus} form of the @emph{textualis formata} that late +medieval scribes used for the most valuable manuscripts. The font Missaali is +based on Textura that German printer Bartholomew Ghotan used for printing +missals and psalters in the 1480s. + +This font has two intended use cases: as a Gothic display font; and for +emulating late-medieval manuscripts. In addition to the basic Textura +letters, the font contains a large number of abbreviation sigla as well as +a set of Lombardic initials. As modern typesetting algorithms are not +intended for creating 15th century style layout, the package contains +a XeLaTeX style file that makes it easier to achieve the classic incunabula +look.") + (license (list license:silofl1.1 license:lppl1.3+)))) + (define-public texlive-mltex (package (name "texlive-mltex") |