gnu: Add texlive-latex-bigfoot.

* gnu/packages/tex.scm (texlive-latex-bigfoot): New variable.
This commit is contained in:
Ricardo Wurmus 2017-07-11 12:00:38 +02:00
parent fedb80ee0e
commit 3236599f50
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 35 additions and 0 deletions

View File

@ -1647,6 +1647,41 @@ make direct processing by LaTeX easier. The package can be used either in
conjunction with BibTeX or as a replacement for BibTeX.")
(license license:lppl1.3+)))
(define-public texlive-latex-bigfoot
(package
(name "texlive-latex-bigfoot")
(version (number->string %texlive-revision))
(source (origin
(method svn-fetch)
(uri (texlive-ref "latex" "bigfoot"))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"092g8alnsdwlgl1isdnqrr32l161994295kadr1n05d81xgj5wnv"))))
(build-system texlive-build-system)
(arguments
'(#:tex-directory "latex/bigfoot"
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'remove-generated-file
(lambda _
(for-each delete-file (find-files "." "\\.drv$"))
#t)))))
(home-page "http://www.ctan.org/pkg/bigfoot")
(synopsis "Footnotes for critical editions")
(description
"This package aims to provide a one-stop solution to requirements for
footnotes. It offers: Multiple footnote apparatus superior to that of
@code{manyfoot}. Footnotes can be formatted in separate paragraphs, or be run
into a single paragraph (this choice may be selected per footnote series);
Things you might have expected (such as @code{\\verb}-like material in
footnotes, and color selections over page breaks) now work. Note that the
majority of the bigfoot package's interface is identical to that of
@code{manyfoot}; users should seek information from that package's
documentation. The bigfoot bundle also provides the @code{perpage} and
@code{suffix} packages.")
(license license:gpl2+)))
(define-public texlive-latex-blindtext
(package
(name "texlive-latex-blindtext")