diff options
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 0f12e6b257..975cd785ce 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10034,6 +10034,27 @@ for a wealth of support information.") package.") (license license:gpl3))) +(define-public texlive-context-annotation + (package + (name "texlive-context-annotation") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/context/third/annotation/" + "tex/context/interface/third/" + "tex/context/third/annotation/") + (base32 + "1b908rj51dbpicdiwwycb36wscxl1asmsmccrzcfbdji189kf6ck"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-context)) + (home-page "https://ctan.org/pkg/context-annotation") + (synopsis "Annotate text blocks") + (description + "The @code{annotation} module lets you create your own commands and +environments to mark text blocks.") + (license license:gpl3+))) + (define-public texlive-beamer (package (name "texlive-beamer") |