me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-pgfgantt.

* gnu/packages/tex.scm (texlive-pgfgantt): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Fabio Natali 2022-07-16 15:28:07 +01:00 committed by Ludovic Courtès
parent 772db83faa
commit 96e50a219d
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 20 additions and 0 deletions

View File

@ -11121,3 +11121,23 @@ lines in a document. Package options include @code{singlespacing},
can be changed as required with the @code{\\singlespacing}, can be changed as required with the @code{\\singlespacing},
@code{\\onehalfspacing}, and @code{\\doublespacing} commands. Other size @code{\\onehalfspacing}, and @code{\\doublespacing} commands. Other size
spacings also available."))) spacings also available.")))
(define-public texlive-pgfgantt
(package
(inherit
(simple-texlive-package
"texlive-pgfgantt"
(list
"doc/latex/pgfgantt/"
"source/latex/pgfgantt/"
"tex/latex/pgfgantt/")
(base32 "0bm034iizk4sd7p5x7vkj7v57dc0bf2lswpsb32s4qlg4s7h6jqz")
#:trivial? #t))
(propagated-inputs (list texlive-pgf))
(home-page "https://ctan.org/graphics/pgf/contrib/pgfgantt")
(synopsis "Draw Gantt charts with TikZ")
(description
"The @code{pgfgantt} package provides an environment for drawing Gantt charts
that contain various elements (titles, bars, milestones, groups and links).
Several keys customize the appearance of the chart elements.")
(license license:lppl1.3+)))