From 32fb35b086d9ad1bac53f2ad0ccba8506ab6e8e4 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:46:29 +0200 Subject: [PATCH] gnu: Add texlive-combine. * gnu/packages/tex.scm (texlive-combine): 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 c566814a13..ebfb800f6e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -76747,6 +76747,28 @@ (define-public texlive-combelow robust, but interferes with hyphenation.") (license license:lppl1.3+))) +(define-public texlive-combine + (package + (name "texlive-combine") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/combine/" "source/latex/combine/" + "tex/latex/combine/") + (base32 + "1v0qs274sqdx63md9xmpibnry0pj44r3rylfyrxaxr8q69i983vc"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/combine") + (synopsis "Bundle individual documents into a single document") + (description + "The @code{combine} class lets you bundle individual documents into a single +document, such as when preparing a conference proceedings. The auxiliary +@code{combinet} package puts the titles and authors from @code{\\maketitle} +commands into the main document's table of contents. The package cooperates +with the @code{abstract} and @code{titling} packages.") + (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