mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add texlive-iftex.
* gnu/packages/tex.scm (texlive-iftex): New variable.
This commit is contained in:
parent
a72d343aea
commit
51bf1c5188
1 changed files with 20 additions and 0 deletions
|
@ -7166,3 +7166,23 @@ (define-public texlive-pst-text
|
|||
a different path and manipulating characters. It includes the functionality
|
||||
of the old package @code{pst-char}.")
|
||||
(license license:lppl))))
|
||||
|
||||
(define-public texlive-iftex
|
||||
(let ((template (simple-texlive-package
|
||||
"texlive-iftex"
|
||||
(list "/doc/generic/iftex/"
|
||||
"/tex/generic/iftex/iftex.sty")
|
||||
(base32
|
||||
"089zvw31gby150n1k0zdk2c0q97pgbqs46phxydaqil64b55nnl7")
|
||||
#:trivial? #t)))
|
||||
(package
|
||||
(inherit template)
|
||||
(home-page "http://www.ctan.org/pkg/iftex")
|
||||
(synopsis "Determine the currently used TeX engine")
|
||||
(description "This package, which works both for Plain TeX and for
|
||||
LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}
|
||||
conditionals for testing which engine is being used for typesetting. The
|
||||
package also provides the @code{\\RequirePDFTeX}, @code{\\RequireXeTeX}, and
|
||||
@code{\\RequireLuaTeX} commands which throw an error if pdfTeX, XeTeX or
|
||||
LuaTeX (respectively) is not the engine in use.")
|
||||
(license license:lppl1.3+))))
|
||||
|
|
Loading…
Reference in a new issue