diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-07-11 08:52:23 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-07-17 14:00:15 +0200 |
commit | c73d0e9d5e71aa3da7b94617590fc245fd547735 (patch) | |
tree | 5f2fcb6ebd018b181a29dc4b7426333ffff40c84 /gnu/packages | |
parent | e0d307d154f852d9d34af90a0586b38e7864af78 (diff) | |
download | patches-c73d0e9d5e71aa3da7b94617590fc245fd547735.tar patches-c73d0e9d5e71aa3da7b94617590fc245fd547735.tar.gz |
gnu: Add texlive-latex-tabulary.
* gnu/packages/tex.scm (texlive-latex-tabulary): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a2a9867af1..24b438524f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2960,6 +2960,31 @@ considered obsolete: it was superseded by @code{subfig}, but users may find the more recent @code{subcaption} package more satisfactory.") (license license:lppl))) +(define-public texlive-latex-tabulary + (package + (name "texlive-latex-tabulary") + (version (number->string %texlive-revision)) + (source (origin + (method svn-fetch) + (uri (texlive-ref "latex" "tabulary")) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "1adkdx2zkk42g82nqf57lv1nc1z7kwl13jmy8vpcsizsa0xdnx9n")))) + (build-system texlive-build-system) + (arguments '(#:tex-directory "latex/tabulary")) + (home-page "http://www.ctan.org/pkg/tabulary") + (synopsis "Tabular with variable width columns balanced") + (description + "The package defines a @code{tabular*}-like environment, @code{tabulary}, +taking a \"total width\" argument as well as the column specifications. The +environment uses column types @code{L}, @code{C}, @code{R} and @code{J} for +variable width columns (@code{\\raggedright}, @code{\\centering}, +@code{\\raggedleft}, and normally justified). In contrast to +@code{tabularx}'s @code{X} columns, the width of each column is weighted +according to the natural width of the widest cell in the column.") + (license license:lppl))) + (define-public texlive-latex-titlesec (package (name "texlive-latex-titlesec") |