From 9ee703d892e6f9dc99321f10047807e6a0a76fad Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:03:20 +0200 Subject: [PATCH] gnu: Add texlive-thumby. * gnu/packages/tex.scm (texlive-thumby): New variable. --- gnu/packages/tex.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 357c649c6fb..b3c68a3d664 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -98146,6 +98146,29 @@ reference guides, anthologies, etc.), where a quick and easy way to find (for example) a chapter is needed.") (license license:lppl1.3+))) +(define-public texlive-thumby + (package + (name "texlive-thumby") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/thumby/" "tex/latex/thumby/") + (base32 + "138ddfn5ha4lbmf66snwvvrvjx0anfgcb9gpv2slbybm0lb9gb6k"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/thumby") + (synopsis "Create thumb indexes for printed books") + (description + "The package can generate thumb indexes for your document. It features +printing thumb indexes on one- or two-sided pages, along with background- and +foreground-color selection and full LaTeX styling of the chapter numbers in +the thumb indexes. The height of each thumb index is automatically chosen +based on the number of chapters in your document, while the width is chosen by +the user. The package is designed to work with the @code{memoir} class, and +also requires PerlTeX and TikZ.") + (license license:gpl3))) + ;;; ;;; 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