me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-pageslts.

* gnu/packages/tex.scm (texlive-pageslts): New variable.
master
Nicolas Goaziou 2023-08-29 15:57:28 +02:00
parent 335116d786
commit 327fe8f734
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 23 additions and 0 deletions

View File

@ -91190,6 +91190,29 @@ numbers, expanding them (e.g., adding first or last page numbers) and
standardising them.") standardising them.")
(license license:lppl))) (license license:lppl)))
(define-public texlive-pageslts
(package
(name "texlive-pageslts")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/pageslts/"
"source/latex/pageslts/"
"tex/latex/pageslts/")
(base32
"0cxkmdiipcclyvrg54rv0lzqr3bllflr6f4pvaar0avw8grgrljc")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/pageslts")
(synopsis "Variants of last page labels")
(description
"The package was designed as an extension of the @code{lastpage} package.
When more than one page numbering scheme is in operation (as in a @code{book}
class document with frontmatter), the labels above do not give the total
number of pages, so the package also provides labels @code{pagesLTS.<numbering
scheme>}, where the numbering scheme is @code{arabic}, @code{roman}, etc.")
(license license:lppl1.3+)))
;;; ;;;
;;; 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