From 85b537d9963753a23e50cc01c0214bfbbc2cf87f Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:59:31 +0200 Subject: [PATCH] gnu: Add texlive-recipebook. * gnu/packages/tex.scm (texlive-recipebook): 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 f577f49408..2bdf576c82 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -93685,6 +93685,29 @@ form anyway when no optional arguments are used.") BrushScript-Italic fonts.") (license license:public-domain))) +(define-public texlive-recipebook + (package + (name "texlive-recipebook") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/recipebook/" + "tex/latex/recipebook/") + (base32 + "058hrxnj3zhp4yjcq1xbbyg1rp7jxycpp6nac2gn9v1admcdami0"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/recipebook") + (synopsis "Typeset 5.5\" x 8\" recipes for browsing or printing") + (description + "This is a LaTeX2e class for typesetting recipes. It is designed for +typesetting one or two recipes per page, with dimensions of 5.5 x 8.5. The +hyperlinked table of contents and page numbers make browsing recipes +convenient, and the pages can be joined together or printed two per sheet to +normal letterpaper easily. The size was chosen to work in half-page 3-ring +binder cover sheets.") + (license license:lppl1.3+))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar