From 379d8c378757925d7941bab79b7606fc7bd3af77 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:54:27 +0200 Subject: [PATCH] gnu: Add texlive-logical-markup-utils. * gnu/packages/tex.scm (texlive-logical-markup-utils): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 511f1122bd..0082ba04c1 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -87444,6 +87444,27 @@ (define-public texlive-logbox @file{.log} file.") (license license:lppl1.3+))) +(define-public texlive-logical-markup-utils + (package + (name "texlive-logical-markup-utils") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/logical-markup-utils/" + "tex/latex/logical-markup-utils/") + (base32 + "0rklvva3gxifb5j1i0bswh0hra2rkmavk5v88pcxqp6jmzps9zpd"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/logical-markup-utils") + (synopsis "Packages for language-dependent inline quotes and dashes") + (description + "The bundle contains two packages: @code{quoted}, for inserting quotation +marks; and @code{onedash}, for inserting dashes. Each package takes +a language name as an option; accepted language options are @code{american}, +@code{british}, @code{german} and @code{polish}.") + (license license:gpl3))) + ;;; ;;; 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