From 35ece028e409a3906e7b0a203030341ca6ad15aa Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:55:28 +0200 Subject: [PATCH] gnu: Add texlive-metalogox. * gnu/packages/tex.scm (texlive-metalogox): 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 83ada412c6..ef2e273463 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -88698,6 +88698,27 @@ (define-public texlive-menukeys define one's own styles in a flexible way.") (license license:lppl1.3c))) +(define-public texlive-metalogox + (package + (name "texlive-metalogox") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/metalogox/" + "source/latex/metalogox/" + "tex/latex/metalogox/") + (base32 + "097a5zmx7fpspz23qrnk5dikjlkpxq42z8p0haw2y9krhg56s045"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/metalogox") + (synopsis "Adjust TeX logos, with font detection") + (description + "This package extends the @code{metalogo} package to automatically adjust the +appearance of the logos TeX, LaTeX, LaTeX2e, XeLaTeX, and LuaLaTeX, depending +on the font detected or the option given to @code{metalogox}.") + (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