From 4672a972e887d24c3ddd9621d7e1d176387a9591 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:49:36 +0200 Subject: [PATCH] gnu: Add texlive-exam-n. * gnu/packages/tex.scm (texlive-exam-n): New variable. --- gnu/packages/tex.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 068d188870..a1680e88c6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -81187,6 +81187,38 @@ (define-public texlive-exam-lite @end itemize") (license license:cc-by-sa4.0))) +(define-public texlive-exam-n + (package + (name "texlive-exam-n") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/exam-n/" "source/latex/exam-n/" + "tex/latex/exam-n/") + (base32 + "1nzg6w0rd3hlpkihkg44qljavha1zkp8wggpivd7q54l1hyib07s"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/exam-n") + (synopsis "Exam class, focused on collaborative authoring") + (description + "The class design offers: + +@itemize + +@item direct support for collaborative development of an exam, using a model +in which a departmental exams convener or exam chair coordinates multiple +authors writing individual questions (the class file and associated process is +in regular use within a physics and astronomy department); + +@item all of the traditional exam paper features such as sectioning, per-part +running marks, ``Question n continued'' catchwords, and so on; + +@item readily configured local adaptation. + +@end itemize") + (license license:lppl1.3c))) + ;;; ;;; 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