diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 12:58:48 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 12:58:48 +0200 |
commit | 8a8dc117968d7083460563a1cd0ef24311f4bc9d (patch) | |
tree | 3be5279afda1894c87935b5185c06c485289c04e | |
parent | c05e80b6564d5f52fb56c6483092645b76bf71c3 (diff) | |
download | guix-8a8dc117968d7083460563a1cd0ef24311f4bc9d.tar guix-8a8dc117968d7083460563a1cd0ef24311f4bc9d.tar.gz |
gnu: Add texlive-plautopatch.
* gnu/packages/tex.scm (texlive-plautopatch): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 78f3e8269c..e5a6edc361 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -14768,6 +14768,31 @@ to Japanese standards using pLaTeX, and also attached additional information of standard LaTeX (especially about Math mode).") (license license:expat))) +(define-public texlive-plautopatch + (package + (name "texlive-plautopatch") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/plautopatch/" + "tex/latex/plautopatch/") + (base32 + "1fhphmjhq0mbsarkfmfj0580b97lxxbcwanr4zpwjj5f6krqq742"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/plautopatch") + (synopsis "Automated patches for pLaTeX/upLaTeX") + (description + "Japanese pLaTeX and upLaTeX formats and packages often conflict with +other LaTeX packages which are unaware of pLaTeX and upLaTeX. In the worst +case, such packages throw a fatal error or end up with a wrong output. The +goal of this package is that there should be no need to worry about such +incompatibilities, because specific patches are loaded automatically whenever +necessary. This helps not only to simplify source files, but also to make the +appearance of working pLaTeX or upLaTeX sources similar to those of ordinary +LaTeX ones.") + (license license:bsd-3))) + (define-public texlive-plipsum (package (name "texlive-plipsum") |