diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 15:36:22 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 19:41:21 +0200 |
commit | de69da218e87da09e857d29e54b4b5edc53c9e6e (patch) | |
tree | 445013dac427723aa17b6d50c4afa8040bcf76b7 | |
parent | 4d9b241d45dc7e81de9740b080160c3f9e00a774 (diff) |
gnu: Add texlive-chemsec.
* gnu/packages/tex.scm (texlive-chemsec): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 1049c7d62c..2e2e36d8ea 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2443,6 +2443,28 @@ UNICHIM regulation.") schemes, and also offers automatic structure referencing.") (license license:lppl1.2+))) +(define-public texlive-chemsec + (package + (name "texlive-chemsec") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/chemsec/" "source/latex/chemsec/" + "tex/latex/chemsec/") + (base32 + "1q41mfhnvh4ni7dn0krrrcr9sr6ma855j1hckbg8fl56dl2h7zlp"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/chemsec") + (synopsis "Automated creation of numeric entity labels") + (description + "Packages provides creation of sequential numeric labels for entities in +a document. The motivating example is chemical structures in a scientific +document. The package can automatically output a full object name and label +on the first occurence in the document and just labels only on subsequent +references.") + (license license:lppl1.3+))) + (define-public texlive-chronosys (package (name "texlive-chronosys") |