diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 00:15:58 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:58 +0200 |
commit | 2c5d257c0cb2e15c2d41cedd8b061fed64f527d6 (patch) | |
tree | 32ece46c4f9e600c8e2df6254c757a3cc88e12f5 /gnu/packages | |
parent | 44dcf8aa96bfd82e6c5fc5a7b8b61ad43f81d2b8 (diff) | |
download | guix-2c5d257c0cb2e15c2d41cedd8b061fed64f527d6.tar.gz |
gnu: Add texlive-latex4wp-it.
* gnu/packages/tex.scm (texlive-latex4wp-it): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 03aba411b0..ce04263da3 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -20231,6 +20231,24 @@ knowledge and techniques of word processing into the LaTeX typesetting environment. It aims at helping such users use LaTeX instead.") (license license:fdl1.3+))) +(define-public texlive-latex4wp-it + (package + (name "texlive-latex4wp-it") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/latex4wp-it/") + (base32 + "14r86fwhb9zafmyv05pqfi9962dpxj7wq94acm43gv8m2rsjp52k"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/latex4wp-it") + (synopsis "LaTeX guide for word processor users, in Italian") + (description + "The package provides a version of the @emph{LaTeX for Word Processor +Users} document in Italian.") + (license license:fdl1.3+))) + (define-public texlive-latexcheat (package (name "texlive-latexcheat") |