diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 19:48:14 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 20:25:29 +0200 |
commit | bc27694a88cc6b95fd675d9031298e18d3fbccb2 (patch) | |
tree | 2d447a55d03d3f8b899c0fe23a09a8992a11a47b /gnu/packages | |
parent | 6ab9d6a404c0db1c3f097b006430fbecdb1a720a (diff) |
gnu: Add texlive-reledmac.
* gnu/packages/tex.scm (texlive-reledmac): New variable.
Diffstat (limited to 'gnu/packages')
-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 642e6b3d87..2d0a6affa2 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11013,6 +11013,29 @@ functionals, c.e.@: sets, stagewise computations, forcing and syntactic classes.") (license license:public-domain))) +(define-public texlive-reledmac + (package + (name "texlive-reledmac") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/reledmac/" + "source/latex/reledmac/" + "tex/latex/reledmac/") + (base32 + "16nfibnjdasflskmxd23hxkapz788abfilwxm3vdj6djkznxq4sw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/reledmac") + (synopsis "Typeset scholarly editions") + (description + "This package provides a package for typesetting scholarly critical +editions, replacing the established @code{ledmac} and @code{eledmac} packages. +It supports indexing by page and by line numbers, and simple @code{tabular}- +and @code{array}-style environments. The package is distributed with the +related @code{reledpar} package.") + (license license:lppl1.3+))) + (define-public texlive-resolsysteme (package (name "texlive-resolsysteme") |