From 7a61e9a203ef56a2198468c423a24058c8490cf1 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:56:29 +0200 Subject: [PATCH] gnu: Add texlive-newcommand. * gnu/packages/tex.scm (texlive-newcommand): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 291c35ecaf..d059aa239a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -89976,6 +89976,25 @@ nesting left and right quotes that properly change between double and single quotes according to their nesting level.") (license license:bsd-3))) +(define-public texlive-newcommand + (package + (name "texlive-newcommand") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/newcommand/") + (base32 + "1vlxm26393psl4kjfh533q03sb4klnfq84nld9ggs8l5x08dks58"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/newcommand") + (synopsis "Generate new LaTeX command definitions") + (description + "Generating any other than the simple @code{\\newcommand}-style commands, in +LaTeX, is tedious. This script allows the specification of commands in +a natural style; the script then generates macros to define the command.") + (license license:lppl))) + ;;; ;;; 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