diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-18 12:16:11 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:40 +0200 |
commit | f7e1b416943352f18d8a2dd126439f477d0d2353 (patch) | |
tree | 31e4d5015805d047f94fec9dc451ba1774972fc7 /gnu/packages | |
parent | 9f6affd5503c3b8dcb88e85ea85558a015850114 (diff) |
gnu: Add texlive-harvard.
* gnu/packages/tex.scm (texlive-harvard): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e1d84498a1..e63b6267d7 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -9777,6 +9777,37 @@ for Chinese character learning plans, presentations, exercise booklets and other documentation work.") (license license:lppl1.3c))) +(define-public texlive-harvard + (package + (name "texlive-harvard") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "bibtex/bib/harvard/" "bibtex/bst/harvard/" + "doc/latex/harvard/" "source/latex/harvard/" + "tex/latex/harvard/") + (base32 + "1qcw1rrvcgcz26pwcmsfd7gs4bzlq1n4zws92xqsr5fi95pr8q7k"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/harvard") + (synopsis "Harvard citation package for use with LaTeX") + (description + "This is a re-implementation, for LaTeX, of the original Harvard package. +The bundle contains the LaTeX package, several BibTeX styles, and a Perl +package for use with LaTeX2HTML. + +Harvard is an author-year citation style (all but the first author are +suppressed in second and subsequent citations of the same entry); the package +defines several variant styles: @file{apsr.bst} for the @emph{American +Political Science Review}; @file{agsm.bst} for Australian government +publications; @file{dcu.bst} from the Design Computing Unit of the University +of Sydney; @file{kluwer.bst}, which aims at the format preferred in Kluwer +publications; @file{nederlands.bst} which deals with sorting Dutch names with +prefixes (such as van) according to Dutch rules, together with several styles +whose authors offer no description of their behaviour.") + (license license:lppl))) + (define-public texlive-havannah (package (name "texlive-havannah") |