diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 21:08:33 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:25 +0200 |
commit | 068e615d3a97f12160eb1f5db66b6cf1312b2263 (patch) | |
tree | 2cc878cd948b03a245db72eb922ca0d455b7353e | |
parent | 957f8590ce9c64a0fdd309af76a38cbc4626a7db (diff) |
gnu: Add texlive-biblatex-manuscripts-philology.
* gnu/packages/tex.scm (texlive-biblatex-manuscripts-philology): 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 834bd79028..124b1f8102 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4054,6 +4054,26 @@ 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-biblatex-manuscripts-philology + (package + (name "texlive-biblatex-manuscripts-philology") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/biblatex-manuscripts-philology/" + "tex/latex/biblatex-manuscripts-philology/") + (base32 + "1q0rqqh6gqs930bzay5cq5hghxk28xs2321y8h7awif0akq03rhm"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/biblatex-manuscripts-philology") + (synopsis "Manage classical manuscripts with BibLaTeX") + (description + "The package adds a new entry type: @code{@@manuscript} to manage +manuscript in classical philology, for example to prepare a critical +edition.") + (license license:lppl1.3+))) + (define-public texlive-bibleref (package (name "texlive-bibleref") |