From 9fd1a322718edb95ca6a03ff357a20b699f00ac4 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:52:21 +0200 Subject: [PATCH] gnu: Add texlive-hep-title. * gnu/packages/tex.scm (texlive-hep-title): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 286f0b519a..acd81f12ec 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -84806,6 +84806,26 @@ (define-public texlive-hep-text package and provides some text macros.") (license license:lppl1.3c))) +(define-public texlive-hep-title + (package + (name "texlive-hep-title") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/hep-title/" + "source/latex/hep-title/" + "tex/latex/hep-title/") + (base32 + "15ln8m1hw8qlhwv08il7g52rj2sjlydl5c42963p0b5rj8hl41si"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/hep-title") + (synopsis "Extensions for the title page") + (description + "The hep-title package extends the title macros of the standard classes with +macros for a preprint, affiliation, editors, and endorsers.") + (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