From ef9ad4ce1a22e766e6ae0d5e25ac89fdaf83c02b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 4 Aug 2023 12:25:06 +0200 Subject: [PATCH] gnu: Add texlive-simplified-latex. * gnu/packages/tex.scm (texlive-simplified-latex): New variable. --- gnu/packages/tex.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e4a87994d2..d50cf8ae68 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -22456,6 +22456,24 @@ technical report, in XeLaTeX. This simple template that can be further customized or extended, with numerous examples.") (license license:public-domain))) +(define-public texlive-simplified-latex + (package + (name "texlive-simplified-latex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/simplified-latex/") + (base32 + "1cgf1p7p2ikda1nb0c2vhhx7ai6rd973pz6a00pr9yanxsvghp6d"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/simplified-latex") + (synopsis "Simplified introduction to LaTeX") + (description + "This package provides an accessible introduction to LaTeX for the +beginner.") + (license license:lppl))) + (define-public texlive-slideshow (package (name "texlive-slideshow")