diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 15:19:38 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:16 +0200 |
commit | 7ef426886826d6b3e4c5eac02d2cb1bbb6716294 (patch) | |
tree | 420240256b44c6161340fca4fcd92c3d5982e421 | |
parent | 763e33331c33c43ffa91ad216062213ff6ae0555 (diff) |
gnu: Add texlive-articleingud.
* gnu/packages/tex.scm (texlive-articleingud): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 64a460a922..c7b66b253a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3416,6 +3416,26 @@ style. It enables the user to reproduce the look of the guide @emph{The art of writing with LaTeX} (the web page is in Italian).") (license license:lppl))) +(define-public texlive-articleingud + (package + (name "texlive-articleingud") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/articleingud/" + "source/latex/articleingud/" + "tex/latex/articleingud/") + (base32 + "1iprjpjr3yav8afmgirrfmdipxb1fmdwa3b0ss5y8l7wspijmmp8"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/articleingud") + (synopsis "LaTeX class for articles published in INGENIERIA review") + (description + "The package provides a class for articles published in INGENIERIA +review. This class is derived from the standard LaTeX class @code{article}.") + (license license:lppl1.2+))) + (define-public texlive-arvo (package (name "texlive-arvo") |