diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 15:59:19 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:05:29 +0200 |
commit | fea0fb94d25b35b7b07b5e8dd69f461fd569eab4 (patch) | |
tree | b3fa6045d8e8b4abf68db2953a5e97915af42127 /gnu/packages | |
parent | 14caf87ac0df239fc2f0c4bed328a834e7ed3b04 (diff) | |
download | guix-fea0fb94d25b35b7b07b5e8dd69f461fd569eab4.tar.gz |
gnu: Add texlive-quotchap.
* gnu/packages/tex.scm (texlive-quotchap): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e18b330b75..fdf6bc90df 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -93443,6 +93443,28 @@ easily insert rather complicated mathematical material in @url{https://socrative.com, socrative quizzes}.") (license license:lppl1.3c))) +(define-public texlive-quotchap + (package + (name "texlive-quotchap") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/quotchap/" + "source/latex/quotchap/" + "tex/latex/quotchap/") + (base32 + "1v3hn7znccza193jlny1f61q6nx1hawp3hmr3277iq31idv59m99"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:tex-format "latex")) + (home-page "https://ctan.org/pkg/quotchap") + (synopsis "Decorative chapter headings") + (description + "This is a package for creating decorative chapter headings with quotations. +Uses graphical and coloured output and by default needs the Adobe standard +font set (as supported by @code{psnfss}).") + (license license:gpl2))) + ;;; ;;; 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 |