From d8eaa3ac5c49852f9e812efb1f635f60eb501e48 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:52:00 +0200 Subject: [PATCH] gnu: Add texlive-grid. * gnu/packages/tex.scm (texlive-grid): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8fa1fd1371..39cb96ac07 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -84358,6 +84358,27 @@ Dvips/Distiller, pdfLaTeX, LuaLaTeX, and XeLaTeX.") include DVI files. The package requires the @command{dvipaste} program.") (license license:lppl))) +(define-public texlive-grid + (package + (name "texlive-grid") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/grid/" "source/latex/grid/" + "tex/latex/grid/") + (base32 + "0gli4izscbk4mvgsr4v9vvf8pbsd56sqa261944jy1smiyni7nwc"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/grid") + (synopsis "Grid typesetting in LaTeX") + (description + "The package helps to enables grid typesetting in double column documents. +Grid typesetting (vertical aligning of lines of text in adjacent columns) is +a difficult task in LaTeX, and the present package is no more than an attempt +to help users to achieve it in a limited way.") + (license license:lppl))) + ;;; ;;; 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