me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-pagecont.

* gnu/packages/tex.scm (texlive-pagecont): New variable.
master
Nicolas Goaziou 2023-08-29 15:57:24 +02:00
parent a7a423a954
commit 7f1af5fba8
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 21 additions and 0 deletions

View File

@ -91092,6 +91092,27 @@ on Arabic numerals, but on any expanded list of tokens passed to it. This
makes it suitable for, among other things, counters of all kinds.") makes it suitable for, among other things, counters of all kinds.")
(license license:lppl1.3c))) (license license:lppl1.3c)))
(define-public texlive-pagecont
(package
(name "texlive-pagecont")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/pagecont/"
"source/latex/pagecont/"
"tex/latex/pagecont/")
(base32
"1n2axjznak2mlajk5m9jgdxzn7n3jmaiv0hsx2mk165630h4vaax")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/pagecont")
(synopsis "Page numbering that continues between documents")
(description
"The package provides the facility that several documents can be typeset
independently with page numbers in sequence, as if they were a single
document.")
(license license:lppl)))
;;; ;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar ;;; of a merge conflict, place them above by existing packages with similar