From b480cd675a9c58d79135aa0df477b5436015ecb2 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:44:27 +0200 Subject: [PATCH] gnu: Add texlive-beamertheme-focus. * gnu/packages/tex.scm (texlive-beamertheme-focus): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 0cad3dd4ff..2d986ac48e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -73881,6 +73881,26 @@ bar ; @end itemize") (license license:lppl1.3+))) +(define-public texlive-beamertheme-focus + (package + (name "texlive-beamertheme-focus") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/beamertheme-focus/" + "tex/latex/beamertheme-focus/") + (base32 + "0bmykagnjn1ws9d6zx95cac0c47sik83ivdgv5rpvdjysl7jq57a"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/beamertheme-focus") + (synopsis "A minimalist presentation theme for LaTeX Beamer") + (description + "This package provides a presentation theme for LaTeX Beamer that aims at +a clean and minimalist design, so to minimize distractions and put the focus +directly on the content.") + (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