From 66f50d36617fe4cc826c383537b895c815072509 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 4 Aug 2023 12:19:38 +0200 Subject: [PATCH] gnu: Add texlive-latexcheat. * gnu/packages/tex.scm (texlive-latexcheat): 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 65cd447aeb..410dafa82f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -18474,6 +18474,25 @@ knowledge and techniques of word processing into the LaTeX typesetting environment. It aims at helping such users use LaTeX instead.") (license license:fdl1.3+))) +(define-public texlive-latexcheat + (package + (name "texlive-latexcheat") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/latexcheat/") + (base32 + "1383rsi21ma0291asi779bjr33m7fii019di8gv8kxwgci692fz0"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/latexcheat") + (synopsis "LaTeX cheat sheet") + (description + "This package provides a LaTeX reference sheet for writing scientific +papers. Unlike many other such sheets, this sheet does not focus on +typesetting mathematics, though it does list some symbols.") + (license license:lppl))) + (define-public texlive-oberdiek (package (name "texlive-oberdiek")