diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 17:00:48 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:11:15 +0200 |
commit | d504f6b2c57441f181292b43a2f506510fce80ce (patch) | |
tree | 63d6fd50a835e56625314199e80fb74e60e4c92a /gnu/packages | |
parent | d50385727365b25f281268e543fd4f7ec97151d1 (diff) |
gnu: Add texlive-turabian.
* gnu/packages/tex.scm (texlive-turabian): 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 6db0780cc9..e5d834d1e4 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -30275,6 +30275,25 @@ 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 + (package + (name "texlive-turabian") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/turabian/" "tex/latex/turabian/") + (base32 + "1waqdm6r4fpy602jfqjbfhm2x71llpg4wj4a9w61pkbca19xcnki"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/turabian") + (synopsis "Create Turabian-formatted material using LaTeX") + (description + "The bundle provides a class file and a template for creating +Turabian-formatted projects. The class file supports citation formatting +conforming to the Turabian 8th Edition style guide.") + (license license:lppl))) + (define-public texlive-turabian-formatting (package (name "texlive-turabian-formatting") |