From 4a914f059537033a4135fc3c794d862b34468acc Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:59:43 +0200 Subject: [PATCH] gnu: Add texlive-repeatindex. * gnu/packages/tex.scm (texlive-repeatindex): 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 da3d680ef5..68fd6a9cd6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -93925,6 +93925,26 @@ a font designer more slots for insertion of ligatures and accented characters.") (license license:lppl1.0+))) +(define-public texlive-repeatindex + (package + (name "texlive-repeatindex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/repeatindex/" + "makeindex/repeatindex/" + "tex/latex/repeatindex/") + (base32 + "10i5z21vz123xq7mn8248584n2h4gziznb28cmjbfmljvc7gfcfr"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/repeatindex") + (synopsis "Repeat items in an index after a page or column break") + (description + "This package repeats item of an index if a page or column break occurs within a +list of subitems. This helps to find out to which main item a subitem belongs.") + (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