From 916e1edf1f56cdb22a7f2a0c1598373f5691e11f Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:55:13 +0200 Subject: [PATCH] gnu: Add texlive-mcaption. * gnu/packages/tex.scm (texlive-mcaption): 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 3c61a1d2fb..3ec4d488cf 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -88398,6 +88398,28 @@ but the maths expression will be italicised if the surrounding text is. expression is italicised.") (license license:lppl))) +(define-public texlive-mcaption + (package + (name "texlive-mcaption") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/mcaption/" + "source/latex/mcaption/" + "tex/latex/mcaption/") + (base32 + "1ibg7k05mcwjkb6ln4w6nlbp9f4iybqhs7wrc1smf6f7dh14d0np"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/mcaption") + (synopsis "Put captions in the margin") + (description + "The @code{mcaption} package provides an @code{mcaption} environment which +puts figure or table captions in the margin. The package works with the +standard classes and with the KOMA-Script document classes @code{scrartcl}, +@code{scrreprt} and @code{scrbook}.") + (license license:lppl))) + ;;; ;;; 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