me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-sepnum.

* gnu/packages/tex.scm (texlive-sepnum): New variable.
Nicolas Goaziou 2023-06-18 16:17:40 +02:00
parent ef1e944c27
commit 9b3e024d47
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 27 additions and 5 deletions

View File

@ -5225,17 +5225,39 @@ tuned to 21st-century presentation styles.")
(define-deprecated-package texlive-latex-seminar texlive-seminar) (define-deprecated-package texlive-latex-seminar texlive-seminar)
(define-public texlive-sepnum
(package
(name "texlive-sepnum")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/sepnum/" "tex/latex/sepnum/")
(base32
"1vzjhb470imd1f5wlj32jysn825vyygq9xkscqdjaa9jby70a26x")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/sepnum")
(synopsis "Print numbers in a friendly format")
(description
"This package provides a command to print a number with (potentially
different) separators every three digits in the parts either side of the
decimal point (the point itself is also configurable). The macro is fully
expandable and not fragile (unless one of the separators is). There is also
a command @code{\\sepnumform}, that may be used when defining
@samp{\\the<counter> macros}.")
(license license:lppl)))
(define-public texlive-seqsplit (define-public texlive-seqsplit
(package (package
(name "texlive-seqsplit") (name "texlive-seqsplit")
(version (number->string %texlive-revision)) (version (number->string %texlive-revision))
(source (texlive-origin (source (texlive-origin
name version name version
(list "doc/latex/seqsplit/" (list "doc/latex/seqsplit/"
"source/latex/seqsplit/" "source/latex/seqsplit/"
"tex/latex/seqsplit/") "tex/latex/seqsplit/")
(base32 (base32
"0x6xcism9s9mhpr278xi4c1gimz3mlqnrpr40vkx5abglr0gzm0j"))) "0x6xcism9s9mhpr278xi4c1gimz3mlqnrpr40vkx5abglr0gzm0j")))
(outputs '("out" "doc")) (outputs '("out" "doc"))
(build-system texlive-build-system) (build-system texlive-build-system)
(home-page "https://ctan.org/pkg/seqsplit") (home-page "https://ctan.org/pkg/seqsplit")