From dad71249f7cd0ee7fc0a6536ee6650220cdd32c8 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:44:08 +0200 Subject: [PATCH] gnu: Add texlive-autopuncitems. * gnu/packages/tex.scm (texlive-autopuncitems): 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 b22de943f4..cb22a6077e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -73406,6 +73406,27 @@ programs, and therefore requires that the LaTeX run starts with @samp{write18} enabled.") (license license:lppl1.2+))) +(define-public texlive-autopuncitems + (package + (name "texlive-autopuncitems") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/lualatex/autopuncitems/" + "tex/lualatex/autopuncitems/") + (base32 + "1i7i2yjlh85gmqna19r7j6wz35yrkkmmc2kzv4r2mhhbag25j8iy"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/autopuncitems") + (synopsis "Automatically punctuate lists") + (description + "This package provides the @code{autopunc} option in the @code{enumitem} +environments @code{itemize}, @code{enumerate}, and @code{description} to +automatically punctuate the items. It uses Lua pattern matching to modify the +environment's contents.") + (license license:expat))) + ;;; ;;; 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