diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 17:13:22 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:11:24 +0200 |
commit | dd3396a91690eabbc1fd049c1e3389ccb944a057 (patch) | |
tree | 2a20ce3cf74abcd900a0909dac476fb9e5dd2a62 /gnu/packages/tex.scm | |
parent | 44026df273c09f94d3c615e992543e8292031fd9 (diff) | |
download | guix-dd3396a91690eabbc1fd049c1e3389ccb944a057.tar guix-dd3396a91690eabbc1fd049c1e3389ccb944a057.tar.gz |
gnu: Add texlive-uowthesistitlepage.
* gnu/packages/tex.scm (texlive-uowthesistitlepage): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f33b08fc29..e03bce986f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -31361,6 +31361,29 @@ Higher Degree Research Theses} (March 2006), by the Research Student Centre, Research & Innovation Division, UoW.") (license license:lppl1.3+))) +(define-public texlive-uowthesistitlepage + (package + (name "texlive-uowthesistitlepage") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/uowthesistitlepage/" + "tex/latex/uowthesistitlepage/") + (base32 + "0mspjj6wvcb9cdbp3qp2cqd3mmmf3kyd77pmk1kji0wspg0jra6y"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/uowthesistitlepage") + (synopsis "Title page for dissertations at the University of Wollongong") + (description + "The package redefines @code{\\maketitle} to generate a title page for +a @acronym{UoW, University of Wollongong} thesis, in accordance with the UoW +branding guidelines. The package should be used with the @code{book} class to +typeset a thesis. The package also defines a @code{\\declaration} command +that typesets the declaration that this thesis is your own work, etc., which +is required in the front of each PhD thesis.") + (license (list license:lppl1.3c license:cc-by-sa4.0)))) + (define-public texlive-uppunctlm (package (name "texlive-uppunctlm") |