diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-06 08:28:40 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:10:31 +0200 |
commit | 56785dbde3048edcd3ad49b48ae5704612ed4f03 (patch) | |
tree | 5e5cad3663573184059be4f29f0c025886e6364f | |
parent | d851f8d7b9cc4bad89bff9dfbf6024f7112a273d (diff) | |
download | guix-56785dbde3048edcd3ad49b48ae5704612ed4f03.tar.gz |
gnu: Add texlive-lualatex-math.
* gnu/packages/tex.scm (texlive-lualatex-math): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 0ad2581996..507ef8cc94 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4101,6 +4101,32 @@ releases. The bundle consists of a Lua script to run the tasks and a @code{.tex} file which provides the testing environment.") (license license:lppl1.3c+)))) +(define-public texlive-lualatex-math + (package + (name "texlive-lualatex-math") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/lualatex/lualatex-math/" + "source/lualatex/lualatex-math/" + "tex/lualatex/lualatex-math/") + (base32 + "1xfr31rwr7zc6d5bsc3v5lwvcfrg109rzfgvvs69w4xs61j06jcg"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs + (list texlive-etoolbox texlive-filehook)) + (home-page "https://ctan.org/pkg/lualatex-math") + (synopsis "Fixes for mathematics-related LuaLaTeX issues") + (description + "The package patches a few commands of the LaTeX2e kernel and the +@code{amsmath} and @code{mathtools} packages to be more compatible with the +LuaTeX engine. It is only meaningful for LuaLaTeX documents containing +mathematical formulas, and does not exhibit any new functionality. The fixes +are mostly moved from the @code{unicode-math} package to this package since +they are not directly related to Unicode mathematics typesetting.") + (license license:lppl1.3c))) + (define-public texlive-lualibs (package (inherit |