From 30b7a6393eec55eb9453f4cbe60b67c629a86339 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 26 Jun 2023 15:14:58 +0200 Subject: [PATCH] gnu: Add texlive-showkerning. * gnu/packages/tex.scm (texlive-showkerning): New variable. --- gnu/packages/tex.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c831b3b9d1..b044020353 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -13859,6 +13859,28 @@ size adjusts to the font size. By option the markers can be placed behind or in front of the glyphs. The package requires LuaLaTeX.") (license license:lppl1.3c))) +(define-public texlive-showkerning + (package + (name "texlive-showkerning") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/lualatex/showkerning/" + "tex/lualatex/showkerning/") + (base32 + "0kd20scd9mv7zmsfz9wy321j07fwkll94cbfpqllzn0jk80qgxgm"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/showkerning") + (synopsis "Showing kerns in a document") + (description + "The package displays all kerning values in the form of colored bars +directly at the respective position in the document. Positive values are +displayed in green, negative values in red. The width of the bars corresponds +exactly to the respective kerning value. By option the bars can be placed +behind or in front of the glyphs. The package requires LuaLaTeX.") + (license license:lppl1.3c))) + (define-public texlive-standalone (package (name "texlive-standalone")