diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 19:58:34 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:21 +0200 |
commit | d866b755fb2e6d93658a161d9bb1e6179777ce5c (patch) | |
tree | 6988580866ded8c5386a2d9fc52e13b20b9a5c44 | |
parent | 9d1f80e7b77f450361c16bb68c3d301336303219 (diff) | |
download | guix-d866b755fb2e6d93658a161d9bb1e6179777ce5c.tar.gz |
gnu: Add texlive-biblatex-gb7714-2015.
* gnu/packages/tex.scm (texlive-biblatex-gb7714-2015): New variable.
-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 c088aae666..0b56f3d233 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3794,6 +3794,28 @@ The style is highly optimized for documents written in German, and the main documentation is only available in German.") (license license:lppl1.3+))) +(define-public texlive-biblatex-gb7714-2015 + (package + (name "texlive-biblatex-gb7714-2015") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/biblatex-gb7714-2015/" + "tex/latex/biblatex-gb7714-2015/") + (base32 + "061gp5xwh2dkckb8dn9b7xhf76cqsq908dniwkp6hg531dzyn525"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/biblatex-gb7714-2015") + (synopsis + "BibLaTeX implementation of the GBT7714-2015 bibliography style for +Chinese users") + (description + "This package provides an implementation of the GBT7714-2015 bibliography +style. This implementation follows the GBT7714-2015 standard and can be used +by simply loading BibLaTeX with the appropriate option.") + (license license:lppl1.3c))) + (define-public texlive-bibleref (package (name "texlive-bibleref") |