From 1d921f6d48149d0175fd55c9c3ce4e1b392b613d Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:53:37 +0200 Subject: [PATCH] gnu: Add texlive-knowledge. * gnu/packages/tex.scm (texlive-knowledge): New variable. --- gnu/packages/tex.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 7b09d070e4..c3a88fb280 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -86383,6 +86383,28 @@ rows can be produced in a key-value fashion.") addressing. (Royal Mail 4 State Code.)") (license license:lppl1.0+))) +(define-public texlive-knowledge + (package + (name "texlive-knowledge") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/knowledge/" + "source/latex/knowledge/" + "tex/latex/knowledge/") + (base32 + "04xf0vc987qhasyl40bjf5av01s84vf5y5h27bds89xj22i4g4in"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/knowledge") + (synopsis "Displaying, hyperlinking, and indexing notions in a document") + (description + "The package offers a systematic way to handle notions/concepts/terms +throughout a document. It helps building an index. In combination with +@code{hyperref} it makes it easy to have every reference of a concept linked +to its introduction. It also offers simple notations.") + (license license:lppl1.2+))) + ;;; ;;; 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