diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-19 15:53:18 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:02 +0200 |
commit | 0c77a0fd60b08af2c6596a50761e3814a756d90a (patch) | |
tree | a1c3e64287ce66ac5ccec57c825a316b581a1cf8 | |
parent | e099105bf8cd25b8f2aa71e162c01140308f2c84 (diff) | |
download | guix-0c77a0fd60b08af2c6596a50761e3814a756d90a.tar.gz |
gnu: Add texlive-ucharclasses.
* gnu/packages/tex.scm (texlive-ucharclasses): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c6e4276f75..ef85a5aec9 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7176,6 +7176,27 @@ definition, or to define space-stripped macros.") and books created by Edward Tufte.") (license license:asl2.0))) +(define-public texlive-ucharclasses + (package + (name "texlive-ucharclasses") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/xelatex/ucharclasses/" + "tex/xelatex/ucharclasses/") + (base32 + "0pgzs730zqmcck693i7fq771p7szq6nqdxb9w8dy6l2b4zdql14m"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ucharclasses") + (synopsis "Font actions in XeTeX according to what is being processed") + (description + "The package takes care of switching fonts when you switch from one +Unicode block to another in the text of a document. This way, you can write +a document with no explicit font selection, but a series of rules of the form +``when entering block ..., switch font to use ...''.") + (license license:public-domain))) + (define-public texlive-currfile (package (name "texlive-currfile") |