mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add texlive-latex-supertabular.
* gnu/packages/tex.scm (texlive-latex-supertabular): New variable.
This commit is contained in:
parent
f47d1a52e4
commit
84f8035a62
1 changed files with 22 additions and 0 deletions
|
@ -1812,6 +1812,28 @@ (define-public texlive-latex-hyperref
|
|||
@code{nameref} packages, which make use of the facilities of @code{hyperref}.")
|
||||
(license license:lppl1.3+)))
|
||||
|
||||
(define-public texlive-latex-supertabular
|
||||
(package
|
||||
(name "texlive-latex-supertabular")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (origin
|
||||
(method svn-fetch)
|
||||
(uri (texlive-ref "latex" "supertabular"))
|
||||
(file-name (string-append name "-" version "-checkout"))
|
||||
(sha256
|
||||
(base32
|
||||
"14b2bc7cqz4ckxxycim9sw6jkrr1pahivm1rdbpz5k6hl967w1s3"))))
|
||||
(build-system texlive-build-system)
|
||||
(arguments '(#:tex-directory "latex/supertabular"))
|
||||
(home-page "http://www.ctan.org/pkg/supertabular")
|
||||
(synopsis "Multi-page tables package")
|
||||
(description
|
||||
"This package was a predecessor of @code{longtable}; the newer
|
||||
package (designed on quite different principles) is easier to use and more
|
||||
flexible, in many cases, but supertabular retains its usefulness in a few
|
||||
situations where longtable has problems.")
|
||||
(license license:lppl1.3+)))
|
||||
|
||||
(define-public texlive-tex-texinfo
|
||||
(package
|
||||
(name "texlive-tex-texinfo")
|
||||
|
|
Loading…
Reference in a new issue