diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-18 13:36:26 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:47 +0200 |
commit | 47fa4a3f69c5d421fef736ca64b2d200fc8f9156 (patch) | |
tree | d44c9e5ea2032d706ddf36e413609b1dbd70bb4b /gnu | |
parent | 9613592ccb73c69f56d32daa73103f00b1a75c4d (diff) | |
download | guix-47fa4a3f69c5d421fef736ca64b2d200fc8f9156.tar.gz |
gnu: Add texlive-pnas2009.
* gnu/packages/tex.scm (texlive-pnas2009): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 36c21cdba8..96e1210791 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -15083,6 +15083,24 @@ chords; a Lua script to transpose chord macros to the required key signature; and support scripts for common requirements.") (license license:gpl2))) +(define-public texlive-pnas2009 + (package + (name "texlive-pnas2009") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "bibtex/bst/pnas2009/") + (base32 + "0yl475rlfhlnd9d0pyzm1gj2gixrdzyn6858j1ndvkhr8vc055ns"))) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pnas2009") + (synopsis "BibTeX style for PNAS (newer version)") + (description + "This style produces bibliographies in the format of @emph{Proceedings of +the National Academy of Sciences, USA}. The style was derived from the +standard @file{unsrt.bst} and adapted to the new (2009) formatting rules.") + (license license:knuth))) + (define-public texlive-poemscol (package (name "texlive-poemscol") |