diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 18:25:51 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:14 +0200 |
commit | cf232f29b66029106203337fccf0075ef02b2c9f (patch) | |
tree | 4798cd76028e4ce1efee94a52f0fd4ac3465a4e7 /gnu | |
parent | f59d8217f6860995f0343c32b04030ed47cef915 (diff) |
gnu: Add texlive-authordate.
* gnu/packages/tex.scm (texlive-authordate): New variable.
Diffstat (limited to 'gnu')
-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 cff24b4835..0015a09304 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2660,6 +2660,28 @@ Chinese.") manual.") (license license:lgpl3+))) +(define-public texlive-authordate + (package + (name "texlive-authordate") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "bibtex/bst/authordate/" + "doc/bibtex/authordate/" + "tex/latex/authordate/") + (base32 + "0d3cd63b80vfd8vzbpn6dnhy47fpq5rxm95i52id2j6606gi1skf"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/authordate") + (synopsis "Author/date style citation styles") + (description + "The bundle provides four BibTeX styles (@code{authordate1}, ..., +@code{authordate4}), and a LaTeX package, for citation in author/date style. +The BibTeX styles differ in how they format names and titles; one of them is +necessary for the LaTeX package to work.") + (license license:knuth))) + (define-public texlive-auto-pst-pdf (package (name "texlive-auto-pst-pdf") |