diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 11:06:47 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 11:33:09 +0200 |
commit | 5075041c97b5adec36a10c26eff6b8f771b8d675 (patch) | |
tree | dabc404f800d1fbc0d965fd9f48e1d9511f0dad5 /gnu/packages | |
parent | 988f6c7059f66f1cee9c1d9d69e5d0bcdc5ebd76 (diff) |
gnu: Add texlive-hindawi-latex-template.
* gnu/packages/tex.scm (texlive-hindawi-latex-template): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 55d8dbc2e3..5d79fdeaec 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12018,6 +12018,25 @@ which are not necessarily balanced. It is in particular used a lot in the to work with entire braced groups at a time.") (license license:lppl1.3c))) +(define-public texlive-hindawi-latex-template + (package + (name "texlive-hindawi-latex-template") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/hindawi-latex-template/") + (base32 + "0q35drybrlcfcrhrd5691m66nd17b0m6hkcsqazpb1ck227zih61"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/hindawi-latex-template") + (synopsis "LaTeX template for authors of the Hindawi journals") + (description + "This package contains a LaTeX template for authors of the Hindawi journals. +Authors can use this template for formatting their research articles for +submissions.") + (license license:lppl1.3+))) + (define-public texlive-hlist (package (name "texlive-hlist") |