diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 12:02:14 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:06 +0200 |
commit | a40e50d2f7bd366d0ab05305fc6b4c0de3662ee4 (patch) | |
tree | 56d5080f61a6b7965a75bb571a224322b174a638 /gnu/packages/tex.scm | |
parent | 63ccc655ef65794b27af6186e671940ecf856901 (diff) | |
download | guix-a40e50d2f7bd366d0ab05305fc6b4c0de3662ee4.tar.gz |
gnu: Add texlive-biblatex-cheatsheet.
* gnu/packages/tex.scm (texlive-biblatex-cheatsheet): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9a4fa9548c..f66d360468 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7173,6 +7173,22 @@ multiple flavours for putting labels inside or outside nodes), and a debugging mode to avoid getting lost in big diagrams.") (license license:expat))) +(define-public texlive-biblatex-cheatsheet + (package + (name "texlive-biblatex-cheatsheet") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/biblatex-cheatsheet/") + (base32 + "0y2ry2q1kvpy8dqglqdfq3rc849hmbni0k78wr1xnjbpd102l3k9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/biblatex-cheatsheet") + (synopsis "BibLaTeX and Biber cheat sheet") + (description "This package provides a BibLaTeX and Biber cheat sheet.") + (license license:lppl1.3+))) + (define-public texlive-bibtex8 (package (name "texlive-bibtex8") |