From 012e4fca211bce6f47c301a04c7dec5a64950bbf Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:56:46 +0200 Subject: [PATCH] gnu: Add texlive-noindentafter. * gnu/packages/tex.scm (texlive-noindentafter): 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 81605e8773..1d2e1e6cb2 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -90329,6 +90329,27 @@ anyone who wants to compile the documentation of those packages.") in a document where they are needed.") (license license:lppl1.3+))) +(define-public texlive-noindentafter + (package + (name "texlive-noindentafter") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/noindentafter/" + "source/latex/noindentafter/" + "tex/latex/noindentafter/") + (base32 + "16kg9x8s1kk9spa91vdnkgc4v69919w4n378kyyxy33pd64cyzzx"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/noindentafter") + (synopsis "Prevent paragraph indentation after environments or macros") + (description + "The package, as the name suggests, supplies tools to automatically suppress +indentations in following paragraphs, specifically those following a particular +macro or environment.") + (license license:lppl1.3c))) + ;;; ;;; 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