me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-xdoc.

* gnu/packages/tex.scm (texlive-xdoc): New variable.
master
Nicolas Goaziou 2023-08-29 16:05:09 +02:00
parent 4ed76e8fb4
commit 017dd3eae7
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 25 additions and 0 deletions

View File

@ -100150,6 +100150,31 @@ hint. The package depends on the Emerald fonts.")
@code{natbib} citations with PDF tooltips.") @code{natbib} citations with PDF tooltips.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public texlive-xdoc
(package
(name "texlive-xdoc")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/xdoc/" "makeindex/xdoc/"
"source/latex/xdoc/" "tex/latex/xdoc/")
(base32
"0jyvl0xaknycr47rypcvdcriz4kx0kgnvy643p1rgmnjddvarv1n")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/xdoc")
(synopsis "Extending the LaTeX doc system")
(description
"Xdoc is a project to rewrite the implementation of the LaTeX @code{doc}
package (in a broader sense) to make its features more general and flexible.
For example, where @code{doc} only provides commands for documenting macros
and environments, @code{xdoc} also provides commands for similarly documenting
package options and switches. This is furthermore done in such a way that it
is very easy to add more such commands for documenting things, such as e.g.,
templates, and program components for other languages (functions, classes,
procedures, etc.).")
(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