From 40b4f1d9325b81f2e1ec9b7e0a6457d1755b09be Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:57:39 +0200 Subject: [PATCH] gnu: Add texlive-parnotes. * gnu/packages/tex.scm (texlive-parnotes): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 129ac95395..03c071078c 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -91408,6 +91408,25 @@ care only of letters which have a macro name like @code{\\alpha} or @code{\\Omega}.") (license license:lppl1.3c))) +(define-public texlive-parnotes + (package + (name "texlive-parnotes") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/parnotes/" "tex/latex/parnotes/") + (base32 + "129wgpd2bwff2g8w6ihjpz2l6n4hyl6bs12g502xd1y89a7g1f0x"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/parnotes") + (synopsis "Notes after every paragraph (or elsewhere)") + (description + "The package provides the @code{\\parnote} command. The notes are set as +running paragraphs; placement is at the end of each paragraph, or manually, +using the @code{\\parnotes} command.") + (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