diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 19:56:31 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:20 +0200 |
commit | 31aaac5bad137f4aa0e3754d4dbaaf23a4371352 (patch) | |
tree | f9b389b4f71b74fb362466cf1b2ed20a975c7eb1 | |
parent | a5a52e2239237ca83555443919bae0b08b6cb3e3 (diff) |
gnu: Add texlive-biblatex-cv.
* gnu/packages/tex.scm (texlive-biblatex-cv): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c31deca2e3..5a2dc86cd8 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3685,6 +3685,26 @@ field for different claves, and to present all these fields in a consistent way.") (license license:lppl1.3+))) +(define-public texlive-biblatex-cv + (package + (name "texlive-biblatex-cv") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/biblatex-cv/" + "tex/latex/biblatex-cv/") + (base32 + "17m6lqnr35y6vcfrrhlhxjf55b85py9miksswhkipyiaj3kphhb8"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/biblatex-cv") + (synopsis "Create a CV from BibTeX files") + (description + "This package creates an academic curriculum vitae (CV) from a BibTeX +@file{.bib} file. The package makes use of BibLaTeX and Biber to +automatically format, group, and sort the entries on a CV.") + (license license:lppl1.3+))) + (define-public texlive-bibleref (package (name "texlive-bibleref") |