diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 16:44:25 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:11:11 +0200 |
commit | cf5e2d065b70920d9b57e0c62e954b56f366ac41 (patch) | |
tree | cec505ce5400170281c8fe0d1dc8776cd1f7d009 /gnu/packages | |
parent | 9c7c89e558665c1553ab3dea66c31f6de2a5af64 (diff) | |
download | guix-cf5e2d065b70920d9b57e0c62e954b56f366ac41.tar.gz |
gnu: Add texlive-thuthesis.
* gnu/packages/tex.scm (texlive-thuthesis): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e17ddb2e91..a8bf38685b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -29780,6 +29780,28 @@ University to write coursework more efficiently. It can also be used by students from other universities.") (license license:lppl1.3+))) +(define-public texlive-thuthesis + (package + (name "texlive-thuthesis") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "bibtex/bst/thuthesis/" + "doc/latex/thuthesis/" + "source/latex/thuthesis/" + "tex/latex/thuthesis/") + (base32 + "11l434c6v0sdhk4y776nrswj53sj2hba4i3dwbspgkh61ckxxhyx"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/thuthesis") + (synopsis "Thesis template for Tsinghua University") + (description + "This package establishes a simple and easy-to-use LaTeX template for +Tsinghua dissertations, including general undergraduate research papers, +masters theses, doctoral dissertations, and postdoctoral reports.") + (license license:lppl1.3c))) + (define-public texlive-tinos (package (name "texlive-tinos") |