me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-titleref.

* gnu/packages/tex.scm (texlive-titleref): New variable.
master
Nicolas Goaziou 2023-08-29 16:03:27 +02:00
parent 85400ef86c
commit 67ee23d68f
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 21 additions and 0 deletions

View File

@ -98280,6 +98280,27 @@ a LaTeX document. The package currently only works with the document classes
@code{article}, @code{report} and @code{book}.")
(license license:public-domain)))
(define-public texlive-titleref
(package
(name "texlive-titleref")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/titleref/" "tex/latex/titleref/")
(base32
"16s0kqln0mzs9mqnsw8rv5rpqizpd3r3lgmw3wl1yrrbq11n9grh")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/titleref")
(synopsis "@code{\\titleref} command to cross-reference section titles")
(description
"This package defines a command @code{\\titleref} that allows you to
cross-reference section (and chapter, etc) titles and captions just like
@code{\\ref} and @code{\\pageref}. The package does not interwork with
@code{hyperref}; if you need @code{hypertext} capabilities, use @code{nameref}
instead.")
(license license:public-domain)))
;;;
;;; 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