diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 15:44:34 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:33 +0200 |
commit | 960829e1d6e4d919af23b13594a1a8d751108b87 (patch) | |
tree | 5048c0f4ed03a91af868682084b7fc42a8983159 /gnu | |
parent | 7efc188161f1bdece5bae891d698163a228755a1 (diff) | |
download | guix-960829e1d6e4d919af23b13594a1a8d751108b87.tar.gz |
gnu: Add texlive-hagenberg-thesis.
* gnu/packages/tex.scm (texlive-hagenberg-thesis): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index cec9ccff9c..b301bd77e2 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -15603,6 +15603,30 @@ constructed language Arka. The bundle provides nine official fonts, in Adobe Type 1 format.") (license license:lppl1.3+))) +(define-public texlive-hagenberg-thesis + (package + (name "texlive-hagenberg-thesis") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/hagenberg-thesis/" + "tex/latex/hagenberg-thesis/") + (base32 + "0dp2mrf4smpllrgszi0cx5w42lm144qs3jvr44h6k98ibsfxdv9h"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/hagenberg-thesis") + (synopsis + "LaTeX classes, style files and example documents for academic +manuscripts") + (description + "This package provides a collection of modern LaTeX classes, style files +and example documents for authoring Bachelor, master or diploma theses and +related academic manuscripts in English and German. It includes comprehensive +tutorials (in English and German) with detailed instructions and authoring +guidelines.") + (license license:cc-by4.0))) + (define-public texlive-hamnosys (package (name "texlive-hamnosys") |