From 142bb8ba1c03a15ef272a6cb50fcf25b64623f1d Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:02:58 +0200 Subject: [PATCH] gnu: Add texlive-texlogos. * gnu/packages/tex.scm (texlive-texlogos): 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 a2d1fde9e8..1fb4da355e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -97732,6 +97732,27 @@ (define-public texlive-tex-locale separator.") (license license:lppl1.3+))) +(define-public texlive-texlogos + (package + (name "texlive-texlogos") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "tex/latex/texlogos/") + (base32 + "0rp4l8da3dn6djdjajavxqr5mmi3fsyadcqrpmd9cfggdvb9i8qz"))) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/texlogos") + (synopsis "Ready-to-use LaTeX logos") + (description + "TeXlogos defines an assortment of frequently used logos not contained in base +LaTeX itself. The Metafont, MetapostAMS, BibTeX and SliTeX logos are defined, +as long as you have the appropriate CM/Logo/AMS fonts. Currency symbols Euro, +Cent, Yen, Won and Naira are defined so as not to need TS1-encoded fonts. +Also defined are the C++ logo, with the @samp{+} signs properly positioned, +and the logo of the Vienna University Business Administration Center (BWZ).") + (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