guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

32/47: gnu: Add texlive-latex-bigfoot.


From: Ricardo Wurmus
Subject: 32/47: gnu: Add texlive-latex-bigfoot.
Date: Mon, 17 Jul 2017 08:04:12 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 3236599f50ebcb1c2355a3c9f687720fa2f54005
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Jul 11 12:00:38 2017 +0200

    gnu: Add texlive-latex-bigfoot.
    
    * gnu/packages/tex.scm (texlive-latex-bigfoot): New variable.
---
 gnu/packages/tex.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index ce29ba0..c4314cd 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -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
address@hidden  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
address@hidden; users should seek information from that package's
+documentation.  The bigfoot bundle also provides the @code{perpage} and
address@hidden packages.")
+    (license license:gpl2+)))
+
 (define-public texlive-latex-blindtext
   (package
     (name "texlive-latex-blindtext")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]