From f1c33c23cefe756cd2f390b152f705fef0da7ef2 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:57:37 +0200 Subject: [PATCH] gnu: Add texlive-parades. * gnu/packages/tex.scm (texlive-parades): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a74d19b838..c909b663d0 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -91367,6 +91367,26 @@ you produce multi-column (e.g., bilingual) document switching and sychronizing each corresponding part in parallel.") (license license:lppl))) +(define-public texlive-parades + (package + (name "texlive-parades") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/parades/" "tex/latex/parades/") + (base32 + "1s7vdypyrkvg4c17qgwy8x9d6jkjkr29cjgzg9lx2iq1zaw178zb"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/parades") + (synopsis "Tabulators and space between paragraphs in galley approach") + (description + "The LaTeX package @code{paravesp} controls the spaces above and below +paragraphs. The Python script @file{parades.py} generates paragraph styles +with support of space above, space below and tabulators. The system imposes +the galley approach on the document.") + (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