From d3ae89d552554b3f8933eea1a7630d790ecfca4c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:04:32 +0200 Subject: [PATCH] gnu: Add texlive-vgrid. * gnu/packages/tex.scm (texlive-vgrid): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index aef3d661fe..ad23eecb83 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -99469,6 +99469,25 @@ (define-public texlive-vertbars numbers with bars to the left or right of the text.") (license license:lppl1.3c))) +(define-public texlive-vgrid + (package + (name "texlive-vgrid") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/vgrid/" "source/latex/vgrid/" + "tex/latex/vgrid/") + (base32 + "1czaf1rz4x7wsinnk6mg78674azg5hnyi53rwh64bv2lzs3l0ah1"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/vgrid") + (synopsis "Overlay a grid on the printed page") + (description + "The package overlays a grid (whose spacing is @code{\\baselineskip}, which +offers guidelines for considering the ``rhythm'' of the document on the page.") + (license license:lppl1.3+))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar