diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 10:02:53 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 11:00:26 +0200 |
commit | ffe2b9c3ad2aa230a36a2a16b7fc7de36c7e3a0c (patch) | |
tree | cf2be5053c9ba2ff0fed06b573081f35eda897a7 /gnu/packages/tex.scm | |
parent | b15381460ed74e72792ff182dd2ca7a06ba59b0c (diff) | |
download | guix-ffe2b9c3ad2aa230a36a2a16b7fc7de36c7e3a0c.tar.gz |
gnu: Add texlive-auto-pst-pdf.
* gnu/packages/tex.scm (texlive-auto-pst-pdf): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8a564714ab..216895f7ec 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1907,6 +1907,29 @@ to get onto CTAN.") converted between Plain TeX and LaTeX by a simple editing action.") (license license:lppl1.3+))) +(define-public texlive-auto-pst-pdf + (package + (name "texlive-auto-pst-pdf") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/auto-pst-pdf/" + "source/latex/auto-pst-pdf/" + "tex/latex/auto-pst-pdf/") + (base32 + "1lpjwqd0rhdzz3kywl54pjlpj1qsj7kflj0336vj2zb20rxl0hqp"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-ifplatform texlive-iftex texlive-xkeyval)) + (home-page "https://ctan.org/pkg/auto-pst-pdf") + (synopsis "Wrapper for @code{pst-pdf} (with some PSfrag features)") + (description + "The package uses @samp{--shell-escape} to execute @code{pst-pdf} when necessary. +Wrappers are provided for various psfrag-related features so that Matlab +figures via @code{laprint}, Mathematica figures via MathPSfrag, and regular +PSfrag figures can all be input consistently and easily.") + (license license:lppl1.3c))) + (define-public texlive-autoaligne (package (name "texlive-autoaligne") |