From 387c84de153283a799520ff5230cb44ec5749f22 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:44:18 +0200 Subject: [PATCH] gnu: Add texlive-beameraudience. * gnu/packages/tex.scm (texlive-beameraudience): 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 924c241c74..09f6d06935 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -73640,6 +73640,27 @@ (define-public texlive-beamerappendixnote forth between the two frames.") (license license:lppl1.3c))) +(define-public texlive-beameraudience + (package + (name "texlive-beameraudience") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/beameraudience/" + "tex/latex/beameraudience/") + (base32 + "0rv01005p9x247ra1kmky8ifxjs2q9jgqc82hn7v2wn9v1a60qla"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/beameraudience") + (synopsis "Assembling Beamer frames according to audience") + (description + "The Beamer Audience package provides macros to easily assemble frames +according to different audiences. It enables to pick up the frames for +a specific audience while leaving their order according to a logical structure +in the LaTeX source.") + (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