From 67d76fb2a10657d33a04446ba78e5b65378d0b06 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:54:15 +0200 Subject: [PATCH] gnu: Add texlive-limap. * gnu/packages/tex.scm (texlive-limap): New variable. --- gnu/packages/tex.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index b57919c970..7fc6d707b4 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -87183,6 +87183,32 @@ (define-public texlive-libgreek customize Greek letters in math mode.") (license license:lppl1.3c))) +(define-public texlive-limap + (package + (name "texlive-limap") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/limap/" "source/latex/limap/" + "tex/latex/limap/") + (base32 + "1v81wckm2g0c67shgwxvci6lfsfjhilwrigy22hcpmszfk1czasm"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/limap") + (synopsis + "Typeset maps and blocks according to the Information Mapping(r) method") + (description + "The Information Mapping method provides a methodology for structuring and +presenting information. It claims to be useful for readers who are more +concerned about finding the right information than reading the document as +a whole. Thus short, highly structured, and context free pieces of +information are used. A LaTeX style and a LaTeX class are provided. The +style contains definitions to typeset maps and blocks according to the +Information Mapping method. The class provides all definitions to typeset +a whole document.") + (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