From 0759ad7007a58e71d480e8e9dd37adb93d49a246 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:01:16 +0200 Subject: gnu: Add texlive-skb. * gnu/packages/tex.scm (texlive-skb): New variable. --- gnu/packages/tex.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f620d51cc9..0982b37c26 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -95778,6 +95778,34 @@ XeLaTeX or LuaLaTeX.") a box.") (license license:lppl1.3+))) +(define-public texlive-skb + (package + (name "texlive-skb") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/skb/" "source/latex/skb/" + "tex/latex/skb/") + (base32 + "146fjbh3jihjq9chbzshfcaha2d05dzqwcg7j154af00na59n8qk"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:tex-format "latex")) + (home-page "https://ctan.org/pkg/skb") + (synopsis "Tools for a repository of long-living documents") + (description + "The package provides macros that help to build a document repository for long +living documents. It focuses on structure and re-use of text, code, figures +etc. The basic concept is first to separate structure from content (i.e., +text about a topic from the structure it is presented by) and then separating +the content from the actual published document, thus enabling easy re-use of +text blocks in different publications (i.e., text about a protocol in a short +article about this protocol as well as in a book about many protocols); all +without constantly copying or changing text. As a side effect, using the +document classes provided, it hides a lot of LaTeX from someone who just wants +to write articles and books.") + (license license:lppl1.3+))) + ;;; ;;; 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 -- cgit 1.4.1