diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 16:04:24 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:40 +0200 |
commit | a16e86bcf26cfe6c011422726214a0e4e5208df6 (patch) | |
tree | 6ac5a919fccd605a3bd77c0c1be8263419c50c06 /gnu/packages | |
parent | 90e990c20924114b078b57c7dba1c3f629255dd2 (diff) | |
download | guix-a16e86bcf26cfe6c011422726214a0e4e5208df6.tar.gz guix-a16e86bcf26cfe6c011422726214a0e4e5208df6.zip |
gnu: Add texlive-create-theorem.
* gnu/packages/tex.scm (texlive-create-theorem): 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 eee87ce2f1..2ffaf71e5a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10245,6 +10245,29 @@ bearing the ability to support bachelor, master, doctor dissertations with grace and speed.") (license license:lppl1.3+))) +(define-public texlive-create-theorem + (package + (name "texlive-create-theorem") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/create-theorem/" + "tex/latex/create-theorem/") + (base32 + "0pnb2n79qyipa2izj5v81rk973psvcmslkqxpivzm9gghrajkk9m"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-crefthe)) + (home-page "https://ctan.org/pkg/create-theorem") + (synopsis "Multilingual support for @code{theorem}-like environments") + (description + "This package provides commands for naming, initializing and configuring +@code{theorem}-like environments. These commands have key-value based +interfaces and are especially useful in multilingual documents, allowing the +easy declaration of @code{theorem}-like environments that can automatically +adapt to the language settings.") + (license license:lppl1.3c))) + (define-public texlive-crefthe (package (name "texlive-crefthe") |