diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 19:53:50 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:19 +0200 |
commit | e6f18d9f70d17b820ca619d8e443fce8dd9b0bd4 (patch) | |
tree | 8b9f291af42844495f98b1cf514aeb78780dbd86 | |
parent | 62a0a37c37f9f2da9657fc5d803cbed23005fa12 (diff) | |
download | guix-e6f18d9f70d17b820ca619d8e443fce8dd9b0bd4.tar.gz |
gnu: Add texlive-biblatex-caspervector.
* gnu/packages/tex.scm (texlive-biblatex-caspervector): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index bd27144a56..594d4e8843 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3595,6 +3595,25 @@ and citation styles for the Business Administration Department of the Free University of Berlin.") (license license:lppl1.3+))) +(define-public texlive-biblatex-caspervector + (package + (name "texlive-biblatex-caspervector") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/biblatex-caspervector/" + "tex/latex/biblatex-caspervector/") + (base32 + "0drch06w3kp5ygc3jad70iixylgaivhxnnibglnih89yg4wq90y4"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/biblatex-caspervector") + (synopsis "Simple citation style for Chinese users") + (description + "The package provides a simple and easily extensible biblography/citation +style for Chinese LaTeX users, using BibLaTeX.") + (license license:lppl1.3+))) + (define-public texlive-bibleref (package (name "texlive-bibleref") |