diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:04:32 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:07:22 +0200 |
commit | d3ae89d552554b3f8933eea1a7630d790ecfca4c (patch) | |
tree | 9ca467719472f5b16fa12e6b613cf10bf75ccc4c /gnu | |
parent | de3f8221d6e61564fc7a02d086a20e5cd58f1724 (diff) | |
download | guix-d3ae89d552554b3f8933eea1a7630d790ecfca4c.tar guix-d3ae89d552554b3f8933eea1a7630d790ecfca4c.tar.gz |
gnu: Add texlive-vgrid.
* gnu/packages/tex.scm (texlive-vgrid): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
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 @@ single-sided document.") 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 |