diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 14:44:12 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:17 +0200 |
commit | 0719c4c4b5e29b2db9f8469209e1240b30d37b50 (patch) | |
tree | 8367a8918d8a233cdac692681e9d314277f4c06c | |
parent | 00acc32e49385dc0dbe7754fad21f1e0702a1afe (diff) | |
download | guix-0719c4c4b5e29b2db9f8469209e1240b30d37b50.tar.gz guix-0719c4c4b5e29b2db9f8469209e1240b30d37b50.zip |
gnu: Add texlive-lua-typo.
* gnu/packages/tex.scm (texlive-lua-typo): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index b2db9942c1..8570cfab3e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16162,6 +16162,29 @@ that allows you to execute Lua code in LuaTeX or any other TeX engine that exposes the shell.") (license license:lppl1.3c))) +(define-public texlive-lua-typo + (package + (name "texlive-lua-typo") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/lualatex/lua-typo/" + "source/lualatex/lua-typo/" + "tex/lualatex/lua-typo/") + (base32 + "0lhjgs7jxdwk2cn9zb99mk2c56awi249zk839waqxnzfr18ky63k"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/lua-typo") + (synopsis "Highlighting typographical flaws with LuaLaTeX") + (description + "This package tracks common typographic flaws in LuaLaTeX documents, +especially widows, orphans, hyphenated words split over two pages, consecutive +lines ending with hyphens, paragraphs ending on too short lines, etc. +Customisable colours are used to highlight these flaws, and the list of pages +on which typographical flaws were found is printed.") + (license license:lppl1.3c))) + (define-public texlive-babel-czech (package (name "texlive-babel-czech") |