From 47beef4b240b61c15b7a529c1f6ffd10241473f1 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:59:20 +0200 Subject: [PATCH] gnu: Add texlive-quoting. * gnu/packages/tex.scm (texlive-quoting): 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 fdf6bc90df..3fe8a16814 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -93465,6 +93465,29 @@ (define-public texlive-quotchap font set (as supported by @code{psnfss}).") (license license:gpl2))) +(define-public texlive-quoting + (package + (name "texlive-quoting") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/quoting/" "source/latex/quoting/" + "tex/latex/quoting/") + (base32 + "035jilwq326893l3iza8dasznjfxvxg0w3r5zkygrjc5zycqmfp4"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/quoting") + (synopsis "Consolidated environment for displayed text") + (description + "As an alternative to the LaTeX standard environments @code{quotation} and +@code{quote}, the package provides a consolidated environment for displayed +text. First-line indentation may be activated by adding a blank line before +the quoting environment. A key-value interface (using kvoptions) allows the +user to configure font properties and spacing and to control orphans within +and after the environment.") + (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