diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 00:02:37 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:51 +0200 |
commit | 245121aa0f93f8a4bf0633695d9dda331ef9ef4c (patch) | |
tree | 9a9226bdec2ff2c753e50ea346a146eafcfa4907 | |
parent | 73472c95abe2f665871ae8d7262c7a99fc8a06ef (diff) | |
download | guix-245121aa0f93f8a4bf0633695d9dda331ef9ef4c.tar.gz |
gnu: Add texlive-templates-fenn.
* gnu/packages/tex.scm (texlive-templates-fenn): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 7d1bba1440..f273102e30 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16013,6 +16013,37 @@ and -editable format; a function and a convexity table of its graph.") (license license:lppl1.3+))) +(define-public texlive-templates-fenn + (package + (name "texlive-templates-fenn") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/templates-fenn/") + (base32 + "1s91swqsysva49cjrb9khgik5mvhxcb3wr2wz4l2683gdgxlbgkf"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/templates-fenn") + (synopsis "Templates for TeX usage") + (description + "This package provides a set of templates for using LaTeX packages that +the author uses, comprising: + +@itemize +@item @file{scrlttr2.tex}: a letter, written with @code{scrlttr2.cls} from the +KOMA-Script bundl, +@item @file{dinbrief.tex}: a letter according to the German +(DIN) standards, written with @file{dinbrief.cls}, +@item @file{kbrief.tex}: a brief memo (@emph{Kurzbrief}) to accompany +enclosures, as used in German offices, again based on @code{dinbrief}, +@item @file{vermerk.tex}: a general form for taking down notes on events in +the office, +@item @file{diabetes.tex}: a diary for the basis-bolus insulin therapy of +diabetes mellitus, using @file{scrartcl.cls} from the KOMA-Script bundle. +@end itemize") + (license license:lppl))) + (define-public texlive-tex4ht (package (name "texlive-tex4ht") |