mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: Add texlive-multicap.
* gnu/packages/tex.scm (texlive-multicap): New variable.
This commit is contained in:
parent
d39f413fbe
commit
1463ca338f
1 changed files with 25 additions and 0 deletions
|
@ -89585,6 +89585,31 @@ (define-public texlive-multibbl
|
|||
auxiliary file (for use with BibTeX) and title.")
|
||||
(license license:lppl)))
|
||||
|
||||
(define-public texlive-multicap
|
||||
(package
|
||||
(name "texlive-multicap")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/latex/multicap/"
|
||||
"source/latex/multicap/"
|
||||
"tex/latex/multicap/")
|
||||
(base32
|
||||
"1hczlj5hhk3qigbq09k8b8s4sgn526lm72a99r14frblpc3177qr")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
;; "multicap.dtx" only generates documentation, not
|
||||
;; "multicap.sty".
|
||||
(arguments (list #:build-targets #~'()))
|
||||
(home-page "https://ctan.org/pkg/multicap")
|
||||
(synopsis "Format captions inside @code{multicols}")
|
||||
(description
|
||||
"This is a package for formatting captions of column figures and column
|
||||
tabular material, which cannot be standard floats in a @code{multicols}
|
||||
environment. The package also provides a convenient way to customise your
|
||||
captions, whether they be in @code{multicols} or not.")
|
||||
(license license:lppl)))
|
||||
|
||||
;;;
|
||||
;;; 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
|
||||
|
|
Loading…
Reference in a new issue