diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 15:39:08 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:29 +0200 |
commit | 03ea85ea9e8f274b37a08db21d36b3ddfc618a33 (patch) | |
tree | df185122f709a7754d516a51eed3dcffd355f96b /gnu | |
parent | 3a29c4f51934a9e89b81e48538d5c6f25826048d (diff) |
gnu: Add texlive-fbithesis.
* gnu/packages/tex.scm (texlive-fbithesis): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 86dfb7cf0a..3a93836be2 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -13227,6 +13227,30 @@ all necessary support files are provided. The font works well with @code{newtxmath}'s @code{libertine} option.") (license (list license:silofl1.1 license:lppl1.3+)))) +(define-public texlive-fbithesis + (package + (name "texlive-fbithesis") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/fbithesis/" + "source/latex/fbithesis/" + "tex/latex/fbithesis/") + (base32 + "1650ilscm47x606piwx7a8z08lhkq87g8k0z40ii3ig0c3p9isgl"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:tex-format "latex")) + (home-page "https://ctan.org/pkg/fbithesis") + (synopsis "Computer Science thesis class for University of Dortmund") + (description + "At the department of computer science at the University of Dortmund +there are cardboard cover pages for research or internal reports like master +and phd theses. The main function of this LaTeX2e document-class is +a replacement for the @code{\\maketitle} command to typeset a title page that +is adjusted to these cover pages.") + (license license:lppl1.3+))) + (define-public texlive-fbs (package (name "texlive-fbs") |