diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 19:57:42 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:21 +0200 |
commit | ae5da4bff0af82dba1e7591e7213eb260b3830e9 (patch) | |
tree | 0a5cbd6ff79e0ba575ae69c65acd1721f1b3e489 | |
parent | 38d9cf2cebc279b99f99d6dd0344a52082a998ba (diff) | |
download | guix-ae5da4bff0af82dba1e7591e7213eb260b3830e9.tar.gz |
gnu: Add texlive-biblatex-ext.
* gnu/packages/tex.scm (texlive-biblatex-ext): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 577c13f82b..57e027578a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3749,6 +3749,29 @@ nationale des chartes (Paris), and may be suitable for a more general use in historical and philological works.") (license license:lppl1.3+))) +(define-public texlive-biblatex-ext + (package + (name "texlive-biblatex-ext") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/biblatex-ext/" + "tex/latex/biblatex-ext/") + (base32 + "09adm378m9laxxb9bs6lqhfprrq0d3l1c627fxp1vcnxqqwd99xc"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/biblatex-ext") + (synopsis "Extended BibLaTeX standard styles") + (description + "The BibLaTeX-ext bundle provides styles that slightly extend the +standard styles that ship with BibLaTeX. The styles offered in this bundle +provide a simple interface to change some of the stylistic decisions made in +the standard styles. At the same time they stay as close to their standard +counterparts as possible, so that most customisation methods can be applied +here as well.") + (license license:lppl1.3c))) + (define-public texlive-bibleref (package (name "texlive-bibleref") |