diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 19:58:50 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:22 +0200 |
commit | 92b673f9ed4e433b22b26fe7d06aada3c75b2a89 (patch) | |
tree | 333331c43a07c9a7f9e146ef3c633696bd81c831 /gnu/packages | |
parent | d866b755fb2e6d93658a161d9bb1e6179777ce5c (diff) | |
download | guix-92b673f9ed4e433b22b26fe7d06aada3c75b2a89.tar.gz guix-92b673f9ed4e433b22b26fe7d06aada3c75b2a89.zip |
gnu: Add texlive-biblatex-german-legal.
* gnu/packages/tex.scm (texlive-biblatex-german-legal): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 0b56f3d233..5bac86267c 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3816,6 +3816,27 @@ 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-biblatex-german-legal + (package + (name "texlive-biblatex-german-legal") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/biblatex-german-legal/" + "tex/latex/biblatex-german-legal/") + (base32 + "14njaba2gvz338f8z4w3vi1qyf7yxx3l9c9nla6ggrw4rnicjpzs"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/biblatex-german-legal") + (synopsis "Comprehensive citation style for German legal texts") + (description + "This package aims to provide citation styles (for footnotes and +bibliographies) for German legal texts. It is currently focused on citations +in books (style german-legal-book), but may be extended to journal articles in +the future.") + (license license:lppl1.3c))) + (define-public texlive-bibleref (package (name "texlive-bibleref") |