diff options
| author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-18 18:41:01 +0200 |
|---|---|---|
| committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:15:28 +0200 |
| commit | 52d02610f4e482bf046219bc804342ad7f799a1e (patch) | |
| tree | d40e83b48e0da4fe06397104ebbb69722d44945a | |
| parent | e50c9a25cfa39b651d6a299d6ade99db1ce208a4 (diff) | |
gnu: Add texlive-context-typearea.
* gnu/packages/tex.scm (texlive-context-typearea): 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 fdcfc73845..d96c9aee70 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10561,6 +10561,26 @@ version in another; this is useful for readers who cannot read the original alphabet. The package can make allowance for hyphenation.") (license license:bsd-2))) ;from "t-transliterator.mkiv" +(define-public texlive-context-typearea + (package + (name "texlive-context-typearea") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/context/third/typearea/" + "tex/context/third/typearea/") + (base32 + "0np4yn0kjq1m7rrhcfxrai18qk19051188sfn9lrvphj604s7sna"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-context)) + (home-page "https://ctan.org/pkg/context-typearea") + (synopsis "Something like Koma-Script typearea") + (description + "The module provides a command that calculates the page layout as the +LaTeX package @code{typearea} does.") + (license license:gpl3+))) + (define-public texlive-beamer (package (name "texlive-beamer") |
