diff options
author | Paul Garlick <pgarlick@tourbillion-technology.com> | 2020-09-07 13:31:22 +0100 |
---|---|---|
committer | Paul Garlick <pgarlick@tourbillion-technology.com> | 2020-09-07 13:39:03 +0100 |
commit | b1c1d7efa6fac42240807005ce3a64af2ad1622a (patch) | |
tree | 070ed78f0c3b2980d1b1fc25d8ff2e4c50b5bdc0 /gnu | |
parent | 1394765238c21030ace4fbb773dc86a9e3c2504c (diff) |
gnu: Add texlive-biblatex.
* gnu/packages/tex.scm (texlive-biblatex): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 540b99d141..63b144c45b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7341,3 +7341,42 @@ collect all requests from all packages and write them to an external XML file. @end enumerate\n") (license license:lppl1.3c)))) + +(define-public texlive-biblatex + (let ((template (simple-texlive-package + "texlive-biblatex" + (list "/doc/latex/biblatex/" + "/tex/latex/biblatex/") + (base32 + "11kzvny50iklzkamr0rqd5x532q8rxny1xhmf96jl8mzj1d2zmay") + #:trivial? #t))) + (package + (inherit template) + (propagated-inputs + `(("texlive-logreq" ,texlive-logreq) + ("texlive-url" ,texlive-url))) + (home-page "https://www.ctan.org/pkg/biblatex") + (synopsis "Sophisticated bibliographies in LaTeX") + (description "BibLaTeX is a complete reimplementation of the +bibliographic facilities provided by LaTeX. Formatting of the +bibliography is entirely controlled by LaTeX macros, facilitating the +design of new bibliography and citation styles. BibLaTeX uses its own +data backend program \"biber\" to read and process the bibliographic +data. With biber, the range of features provided by biblatex +includes: + +@enumerate +@item +full unicode support, + +@item +customisable bibliography labels, + +@item +multiple bibliographies in the same document, and + +@item +subdivided bibliographies, such as bibliographies per chapter or +section. +@end enumerate\n") + (license license:lppl1.3c)))) |