From dbd5df621dc9fe12317c71bb457939e61152cff0 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 18 Jun 2023 16:13:29 +0200 Subject: [PATCH] gnu: Add texlive-memoir. * gnu/packages/tex.scm (texlive-memoir): New variable. --- gnu/packages/tex.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index daf275f2a3..b2262a2a6a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10391,6 +10391,29 @@ (define-public texlive-mathtools @end itemize") (license license:lppl1.3c))) +(define-public texlive-memoir + (package + (name "texlive-memoir") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/memoir/" "makeindex/memoir/" + "source/latex/memoir/" "tex/latex/memoir/") + (base32 + "10jf0kiwvgrki8az04b57v0ffm6b3jj1rz3q6fgxhnrbsd68iphr"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/memoir") + (synopsis "Typeset fiction, non-fiction and mathematical books") + (description + "The @code{memoir} class is for typesetting poetry, fiction, +non-fiction, and mathematical works. Permissible document base font sizes +range from 9 to 60pt. There is a range of page-styles and well over a dozen +chapter-styles to choose from, as well as methods for specifying your own +layouts and designs. The class also provides the functionality of over thirty +of the more popular packages, thus simplifying document sources.") + (license license:lppl1.3+))) + (define-public texlive-fp (package (name "texlive-fp")