From cd5cdc649de5e95bf68b496492d2920d9dbe46c9 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:55:08 +0200 Subject: [PATCH] gnu: Add texlive-marginfit. * gnu/packages/tex.scm (texlive-marginfit): 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 032ec71fbb..1d9bb80532 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -88279,6 +88279,28 @@ main file one puts commands like @samp{\\setindex@{main@}} to steer the flow. Some features of MakeIndex may no longer work.") (license license:lppl1.2+))) +(define-public texlive-marginfit + (package + (name "texlive-marginfit") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/marginfit/" + "source/latex/marginfit/" + "tex/latex/marginfit/") + (base32 + "1hw87d6f6r23f9ri9j7r51v6vbq4naycldqjach2snv19s6a2855"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/marginfit") + (synopsis "Improved margin notes") + (description + "This package fixes various bugs with the margin paragraph implementation of +LaTeX. Those bugs include margin notes that are attached to the wrong side as +well as those that stick out of the bottom of the page. This package provides +a drop-in replacement solution.") + (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