diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 21:14:32 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:26 +0200 |
commit | cf94a487a4b3429dadcf9806a1c24f8d91edf918 (patch) | |
tree | e34c860eb09a50e4dac64c547bfe49e5770d6b34 /gnu/packages | |
parent | 2c6a19fc2e6c9d8c0a1761fa3bd3986804ae15e4 (diff) | |
download | guix-cf94a487a4b3429dadcf9806a1c24f8d91edf918.tar.gz guix-cf94a487a4b3429dadcf9806a1c24f8d91edf918.zip |
gnu: Add texlive-biblatex-nejm.
* gnu/packages/tex.scm (texlive-biblatex-nejm): New variable.
Diffstat (limited to 'gnu/packages')
-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 1d6dbd0ad5..aa49085149 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4198,6 +4198,26 @@ usable with other classes, too.") preparing papers for submission to the journal @emph{Nature}.") (license license:lppl1.3c))) +(define-public texlive-biblatex-nejm + (package + (name "texlive-biblatex-nejm") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/biblatex-nejm/" + "source/latex/biblatex-nejm/" + "tex/latex/biblatex-nejm/") + (base32 + "1fa12hbzrqd7brz90zhn3lklbqvvn5sw5l3y8pnm5xx604dkdiiw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/biblatex-nejm") + (synopsis "BibLaTeX style for the New England Journal of Medicine (NEJM)") + (description + "This is a BibLaTeX numeric style based on the design of the New England +Journal of Medicine (NEJM).") + (license license:lppl1.3+))) + (define-public texlive-bibleref (package (name "texlive-bibleref") |