diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 17:02:51 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:11:17 +0200 |
commit | cb63e9fe6c5dff3793015afe741fc3dffe8bf93f (patch) | |
tree | bdcc8aeed76177fcbc1ea98bb17501649ddc012d | |
parent | 8ad71d41bbd8e61a014bece290917a6ad2c4e79b (diff) | |
download | guix-cb63e9fe6c5dff3793015afe741fc3dffe8bf93f.tar guix-cb63e9fe6c5dff3793015afe741fc3dffe8bf93f.tar.gz |
gnu: Add texlive-ucsmonograph.
* gnu/packages/tex.scm (texlive-ucsmonograph): New variable.
-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 c3820f7fe2..cbe82e12de 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -30554,6 +30554,28 @@ create a dissertation or thesis conforming to UC Davis formatting requirements as of April 2016.") (license license:lppl1.2+))) +(define-public texlive-ucsmonograph + (package + (name "texlive-ucsmonograph") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/ucsmonograph/" + "source/latex/ucsmonograph/" + "tex/latex/ucsmonograph/") + (base32 + "13yf91i1c4bin9vbvsjpl5s7fkina5ai5zw868wdk5fiqvmqvgx7"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ucsmonograph") + (synopsis + "Typesetting academic documents from the University of Caxias do Sul") + (description + "This is a LaTeX class for typesetting academic documents according to +the @acronym{ABNT, Brazilian Technical Standards Association} standards and +the @acronym{UCS, University of Caxias do Sul} specifications.") + (license license:lppl1.3c))) + (define-public texlive-ulqda (package (name "texlive-ulqda") |