diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 17:07:30 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:11:20 +0200 |
commit | 2fa271465181fc0451a4482996853eb4ed8e9426 (patch) | |
tree | a18f3c0b287ce2fa01084308509af7536e141d7b /gnu | |
parent | 8864b9a67fb024dad1161fced589520c094e8713 (diff) |
gnu: Add texlive-unam-thesis.
* gnu/packages/tex.scm (texlive-unam-thesis): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f758a556a4..2137ca2fac 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -30883,6 +30883,25 @@ and the standard Computer Modern font family. It contains four OpenType fonts which are required for use of the @code{xgreek} package for XeLaTeX.") (license license:silofl1.1))) +(define-public texlive-unam-thesis + (package + (name "texlive-unam-thesis") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/unam-thesis/" + "tex/latex/unam-thesis/") + (base32 + "1cn4qd3rvh9z8sp7g94fh11khij2vykv89inbmy7g52hxgxzkdhh"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/unam-thesis") + (synopsis "Create documents according to the UNAM guidelines") + (description + "This is a class for creating dissertation documents according to the +National Autonomous University of Mexico (UNAM) guidelines.") + (license license:gpl3+))) + (define-public texlive-unfonts-core (package (name "texlive-unfonts-core") |