diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 21:08:19 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:24 +0200 |
commit | 957f8590ce9c64a0fdd309af76a38cbc4626a7db (patch) | |
tree | 2a3f33a5d2498987ce69885716558dc6944d2f02 | |
parent | 96c55c175626d9ef39c69315242eceddcc6c1195 (diff) | |
download | guix-957f8590ce9c64a0fdd309af76a38cbc4626a7db.tar.gz guix-957f8590ce9c64a0fdd309af76a38cbc4626a7db.zip |
gnu: Add texlive-biblatex-luh-ipw.
* gnu/packages/tex.scm (texlive-biblatex-luh-ipw): 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 2675c9b0eb..834bd79028 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4031,6 +4031,29 @@ via BibLaTeX's built-in related mechanism. It provides a new related type by the Gesellschaft fur Informatik (GI e.V.).") (license license:lppl1.3+))) +(define-public texlive-biblatex-luh-ipw + (package + (name "texlive-biblatex-luh-ipw") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/biblatex-luh-ipw/" + "tex/latex/biblatex-luh-ipw/bbx/" + "tex/latex/biblatex-luh-ipw/cbx/" + "tex/latex/biblatex-luh-ipw/lbx/") + (base32 + "18fnq2xjwsp5lq7vywbgzppbijqn4xarqga0g1rpj89g9q0zjs30"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/biblatex-luh-ipw") + (synopsis "BibLaTeX styles for social sciences") + (description + "The bundle is a small collection of styles for BibLaTeX. It was +designed for citations in the Humanities, following the guidelines of style of +the institutes for the social sciences of the Leibniz University Hannover/LUH +(especially the Institute of Political Science).") + (license license:lppl1.3+))) + (define-public texlive-bibleref (package (name "texlive-bibleref") |