diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 15:36:32 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:27 +0200 |
commit | 4d28b31fef3d9f489b22321527e43ace553cb52d (patch) | |
tree | e2bf81270c36cea21a7017945b5e19468cfaabbc /gnu/packages | |
parent | 7e91618e161290c33f88e22ee2bedbd87ce7965f (diff) |
gnu: Add texlive-elteikthesis.
* gnu/packages/tex.scm (texlive-elteikthesis): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 768fce30f2..7f162a01ba 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12349,6 +12349,26 @@ electronic submission system and elsewhere.") articles both in Elsevier's electronic submission system and elsewhere.") (license license:lppl1.2+))) +(define-public texlive-elteikthesis + (package + (name "texlive-elteikthesis") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/elteikthesis/" + "tex/latex/elteikthesis/") + (base32 + "0brfkpg32vqm42cwp10vbjbk752jcfq5g65znl0z539xdynf1nnp"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/elteikthesis") + (synopsis "Thesis template for Eotvos Lorand University (Informatics)") + (description + "This package provides a bachelor and master thesis template for the +Eotvos Lorand University, Faculty of Informatics (Budapest, Hungary). The +template supports producing both Hungarian and English theses.") + (license license:expat))) + (define-public texlive-eltex (package (name "texlive-eltex") |