From 7f8413cba7564a13ab698bfaef1efc12ef1da25d Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:44:03 +0200 Subject: [PATCH] gnu: Add texlive-authoraftertitle. * gnu/packages/tex.scm (texlive-authoraftertitle): 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 7b48a970fc..b49c793ac6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -73274,6 +73274,26 @@ package provides the correct hyperlinks for those URLs. The 1000 most common prefixes are predefined and more can be added.") (license license:public-domain))) +(define-public texlive-authoraftertitle + (package + (name "texlive-authoraftertitle") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/authoraftertitle/" + "tex/latex/authoraftertitle/") + (base32 + "1x5b17a8xx0wv2zzsgzq5f3farpil4hwyhw070f5rhdzp2h7xcl1"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/authoraftertitle") + (synopsis "Make author, etc., available after @code{\\maketitle}") + (description + "This package makes the author, title and date of the package available to the +user (as @code{\\MyAuthor}, etc) after the @code{\\maketitle} command has been +executed.") + (license license:cc0))) + ;;; ;;; 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