diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 15:30:21 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:23 +0200 |
commit | fc692a2d3298dc7c11e2e192073ebc5edd074321 (patch) | |
tree | 1619e04afca579305cd47abe6e494f0048d2b309 | |
parent | e70d421d41b1a280a8290b7f71db1e28a2fa14c7 (diff) | |
download | guix-fc692a2d3298dc7c11e2e192073ebc5edd074321.tar guix-fc692a2d3298dc7c11e2e192073ebc5edd074321.tar.gz |
gnu: Add texlive-cje.
* gnu/packages/tex.scm (texlive-cje): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 62042948bb..2dda32beec 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -9007,6 +9007,28 @@ job without using the indexing facilities, and needs no special @code{\\cite}-replacement package.") (license license:bsd-4))) +(define-public texlive-cje + (package + (name "texlive-cje") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "bibtex/bst/cje/" "doc/latex/cje/" + "tex/latex/cje/") + (base32 + "0mxd9z2myzj1pixv4rqib1l6ixj0lq0vy7izgl1gx7k5bwxq945m"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/cje") + (synopsis "LaTeX document class for CJE articles") + (description + "The @code{cje} article class allows authors to format their papers to +@emph{Canadian Journal of Economics} style with minimum effort. The class +includes options for two other formats: @code{review} (double spaced, for use +at the submission stage) and @code{proof} (used by the typesetters to prepare +the proof authors will receive for approval).") + (license license:lppl1.3c))) + (define-public texlive-cjhebrew (package (name "texlive-cjhebrew") |