diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:02:47 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:06:45 +0200 |
commit | 8afb1bfc610484ab20da9695514b691ba1aa546a (patch) | |
tree | 44b08ebf5f5f2f3b2055dcb4ebc733d9c6726bd4 | |
parent | 5e115917f475a868c185f6fcf0b8d6b0ae162531 (diff) | |
download | guix-8afb1bfc610484ab20da9695514b691ba1aa546a.tar.gz |
gnu: Add texlive-technics.
* gnu/packages/tex.scm (texlive-technics): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 43a26dc5c9..11624470b2 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -97501,6 +97501,26 @@ package is a bit like the @code{doc} package is for LaTeX, whereas the documents, for example in presentations.") (license license:gpl2))) +(define-public texlive-technics + (package + (name "texlive-technics") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/technics/" "tex/latex/technics/") + (base32 + "1nhh5zkm3w3n6bxxk7ysnwkff1bxkhzbc91aplz4d03j5yvy76l6"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/technics") + (synopsis "Format technical documents") + (description + "The package provides a very simple LaTeX document template, in the hope that +this use of LaTeX will become attractive to typical word processor +users. (Presentation is as if it were a class; users are expected to start +from a template document.)") + (license license:lppl))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar |