diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 18:23:41 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:13 +0200 |
commit | e6e5e6f4544dbb6b71575f92d4afeeff7d3c3c9f (patch) | |
tree | 800ae45ae8a5fb7cc257b5ef2aa05968ab2c4d73 /gnu | |
parent | abfe35ebac42e5527b9a6babea08ba8e25a50887 (diff) | |
download | guix-e6e5e6f4544dbb6b71575f92d4afeeff7d3c3c9f.tar.gz |
gnu: Add texlive-apalike-ejor.
* gnu/packages/tex.scm (texlive-apalike-ejor): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index bf6a30385c..0e615921cf 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2087,6 +2087,27 @@ extra facilities (including Babel-like language switching, which eases porting of LaTeX documents to Lambda).") (license license:lppl))) +(define-public texlive-apalike-ejor + (package + (name "texlive-apalike-ejor") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "bibtex/bst/apalike-ejor/" + "doc/bibtex/apalike-ejor/") + (base32 + "0qq7c81hqi46596zw322w1qd8z341zksi5720f9s75nj1hmjj12g"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/apalike-ejor") + (synopsis + "BibTeX style file for the European Journal of Operational Research") + (description + "This package contains a BibTeX style file, @file{apalike-ejor.bst}, +made to follow the European Journal of Operational Research reference style +guidelines.") + (license license:lppl1.3c))) + (define-public texlive-apnum (package (name "texlive-apnum") |