From d8f17d70cc3cd095b3e50106fcd448f83d369d3c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:54:10 +0200 Subject: [PATCH] gnu: Add texlive-lettrine. * gnu/packages/tex.scm (texlive-lettrine): New variable. --- gnu/packages/tex.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9f66eeea90..7ad9b286ca 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -87090,6 +87090,28 @@ selection of units.") "This class is for writing letters and faxes in French.") (license license:lppl1.3+))) +(define-public texlive-lettrine + (package + (name "texlive-lettrine") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/lettrine/" + "source/latex/lettrine/" + "tex/latex/lettrine/") + (base32 + "1s46gpgc7v336r5ksi20r6k892j8ys7inl9jqndx2wn9ikzwibb8"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/lettrine") + (synopsis "Typeset dropped capitals") + (description + "The @code{lettrine} package supports various dropped capitals styles, +typically those described in the French typographic books. In particular, it +has facilities for the paragraph text's left edge to follow the outline of +capitals that have a regular shape (such as @samp{A} and @samp{V}).") + (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