diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 15:43:07 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:32 +0200 |
commit | 7e28e88e2b7b91c6cce132b1f8ae2d785891314a (patch) | |
tree | 31feb483a8a2898d7f5c3c2b8f3cc2d22e71a8d3 /gnu | |
parent | 9d5de8aaacc11fc910550729122ef792b7ea13c0 (diff) | |
download | guix-7e28e88e2b7b91c6cce132b1f8ae2d785891314a.tar guix-7e28e88e2b7b91c6cce132b1f8ae2d785891314a.tar.gz |
gnu: Add texlive-gsemthesis.
* gnu/packages/tex.scm (texlive-gsemthesis): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 6b4fd58cd4..1c4d8d9e68 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -15295,6 +15295,29 @@ concept-script in the style of his @emph{Grundgesetze der Arithmetik} (Basic Laws of Arithmetic).") (license license:gpl2))) +(define-public texlive-gsemthesis + (package + (name "texlive-gsemthesis") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/gsemthesis/" + "source/latex/gsemthesis/" + "tex/latex/gsemthesis/") + (base32 + "0wwd6pddxb91gj6jr6zc0xy0sr0s0mbdjzyw856w9ds0lp0k6cl9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/gsemthesis") + (synopsis "Geneva School of Economics and Management PhD thesis format") + (description + "The class provides a PhD thesis template for the @acronym{GSEM, +Geneva School of Economics and Management}, University of Geneva, Switzerland. +The class provides utilities to easily set up the cover page, the front matter +pages, the page headers, etc., conformant to the official guidelines of the +GSEM Faculty for writing PhD dissertations.") + (license license:lppl1.3+))) + (define-public texlive-gtrcrd (package (name "texlive-gtrcrd") |