diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 15:13:31 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:35 +0200 |
commit | 660afab5fb17a7513b3e47d125ec3c4aad9844ac (patch) | |
tree | 501b3f060d7d2674da22e0663a4ecf582b0c6635 | |
parent | 165a78e46871c1d75eedab27d5b3b0d8fb2124fa (diff) |
gnu: Add texlive-scikgtex.
* gnu/packages/tex.scm (texlive-scikgtex): New variable.
-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 88d9f66f99..2cd40810e2 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -13794,6 +13794,29 @@ keys.") (define-deprecated-package texlive-latex-xkeyval texlive-xkeyval) +(define-public texlive-scikgtex + (package + (name "texlive-scikgtex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/lualatex/scikgtex/" + "tex/lualatex/scikgtex/") + (base32 + "0p7y7qd5kmlhr4v72x8krxihzjm80fkb65wh28rr2r54rw8ag3hc"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/scikgtex") + (synopsis + "Mark research contributions in scientific documents and embed them in PDF metadata") + (description + "Scientific Knowledge Graph TeX (SciKgTeX) is a LuaLaTeX package which +makes it possible to annotate specific research contributions in scientific +documents. SciKGTeX will enrich the document by adding the marked +contributions to PDF metadata in a structured XMP format which can be picked +up by search engines and knowledge graphs.") + (license license:expat))) + (define-public texlive-standalone (package (name "texlive-standalone") |