diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 17:00:37 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:11:15 +0200 |
commit | d50385727365b25f281268e543fd4f7ec97151d1 (patch) | |
tree | c2213968e3f2e1aca0312f85fb7d01754d29503d /gnu/packages | |
parent | 105e8248d3a7abfdf3f307eac3898e8bc2e4515a (diff) | |
download | guix-d50385727365b25f281268e543fd4f7ec97151d1.tar.gz guix-d50385727365b25f281268e543fd4f7ec97151d1.zip |
gnu: Add texlive-tui.
* gnu/packages/tex.scm (texlive-tui): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 907d268e17..6db0780cc9 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -30256,6 +30256,25 @@ style, @file{tugboat.bst}.") TeX for publication in @emph{TUGboat}.") (license license:knuth))) +(define-public texlive-tui + (package + (name "texlive-tui") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tui/" "tex/latex/tui/") + (base32 + "14wl2n8wbc2p6nmrallwsxp4s6h73h97qm1w8algyv67bfl5i0hs"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tui") + (synopsis "Thesis style for the University of the Andes, Colombia") + (description + "The class is used for doctoral dissertations from the Faculty of +Engineering at the Universidad de los Andes, Bogota, Colombia. It is +implemented as an extension of the @code{memoir} class.") + (license license:lppl))) + (define-public texlive-turabian-formatting (package (name "texlive-turabian-formatting") |