diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-18 12:14:07 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:39 +0200 |
commit | d2d55b297db93a3e408ac9aa51069d30462ad4bc (patch) | |
tree | 8a0b7130a5e21f877eda92c949699269c05191c9 /gnu | |
parent | 5e5b80b010b4c836d7b9698aecb2ded677b714a8 (diff) | |
download | guix-d2d55b297db93a3e408ac9aa51069d30462ad4bc.tar.gz |
gnu: Add texlive-gbt7714.
* gnu/packages/tex.scm (texlive-gbt7714): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 26160cdf95..6d49c23c77 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -9205,6 +9205,32 @@ nets, diagrams, etc., very easily, in the LaTeX @code{picture} environment.") glosses, and various other goodies.") (license license:lppl1.2+))) +(define-public texlive-gbt7714 + (package + (name "texlive-gbt7714") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "bibtex/bst/gbt7714/" "doc/bibtex/gbt7714/" + "source/bibtex/gbt7714/" + "tex/latex/gbt7714/") + (base32 + "0pmkbh0axh0qnc08fjn5g7pbw59n543siy4l9q3bihnyid11i5qp"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-bibtex texlive-natbib texlive-url)) + (home-page "https://ctan.org/pkg/gbt7714") + (synopsis "China's bibliography style standard GB/T 7714-2015 for BibTeX") + (description + "The package provides a BibTeX implementation for the Chinese national +bibliography style standard GB/T 7714-2015. It consists of two @file{.bst} +files for numerical and author-year styles as well as a LaTeX package which +provides the citation style defined in the standard. + +The package is compatible with @code{natbib} and supports language +detection (Chinese and English) for each biblilography entry.") + (license license:lppl1.3c))) + (define-public texlive-gchords (package (name "texlive-gchords") |