diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-19 14:53:34 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:15:54 +0200 |
commit | ae83879c585ffee398bc314f1ef5eaf513b8c4a0 (patch) | |
tree | e78e82e278187ee989f65052cc097eb8a87a97f2 | |
parent | 51e6dfb138fb9ce6666ff9b0b1bf8c05cbec9a1f (diff) |
gnu: Add texlive-scheme-bookpub.
* gnu/packages/tex.scm (texlive-scheme-bookpub): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 63e5299585..4ca991e439 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -15690,6 +15690,50 @@ Computer Modern fonts. This scheme corresponds to @code{collection-basic} and (define-deprecated-package texlive-base texlive-scheme-basic) +(define-public texlive-scheme-bookpub + (package + (name "texlive-scheme-bookpub") + (version (number->string %texlive-revision)) + (source #f) + (build-system trivial-build-system) + (arguments (list #:builder #~(mkdir #$output))) + (propagated-inputs + (list texlive-barcodes + texlive-biber + texlive-biblatex + texlive-bookcover + texlive-caption + texlive-collection-basic + texlive-collection-latex + texlive-enumitem + texlive-fontspec + texlive-latexmk + texlive-lipsum + texlive-listings + texlive-markdown + texlive-memoir + texlive-microtype + texlive-minted + texlive-novel + texlive-octavo + texlive-pdfpages + texlive-pgf + texlive-qrcode + texlive-shapes + texlive-titlesec + texlive-tocloft + texlive-tufte-latex + texlive-willowtreebook)) + (home-page "https://www.tug.org/texlive/") + (synopsis "Book publishing scheme (core LaTeX and add-ons)") + (description + "This is a book publishing scheme, containing core (Lua)LaTeX and +selected additional packages likely to be useful for non-technical book +publication. It does not contain additional fonts (different books need +different fonts, and the packages are large), nor does it contain additional +mathematical or other technical packages.") + (license (license:fsf-free "https://www.tug.org/texlive/copying.html")))) + (define-public texlive-scheme-context (package (name "texlive-scheme-context") |