mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add texlive-ted.
* gnu/packages/tex.scm (texlive-ted): New variable.
This commit is contained in:
parent
8afb1bfc61
commit
2af8a8101c
1 changed files with 34 additions and 0 deletions
|
@ -97521,6 +97521,40 @@ (define-public texlive-technics
|
|||
from a template document.)")
|
||||
(license license:lppl)))
|
||||
|
||||
(define-public texlive-ted
|
||||
(package
|
||||
(name "texlive-ted")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/latex/ted/" "source/latex/ted/"
|
||||
"tex/latex/ted/")
|
||||
(base32
|
||||
"0vkp71bpmhs3ys29cx4sxcvqqx63pqym6n87j3sr5hy7rw20ya0x")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments (list #:tex-format "latex"))
|
||||
(native-inputs
|
||||
(list (texlive-updmap.cfg
|
||||
(list texlive-etoolbox
|
||||
texlive-hypdoc
|
||||
texlive-lm
|
||||
texlive-microtype
|
||||
texlive-minitoc))))
|
||||
(home-page "https://ctan.org/pkg/ted")
|
||||
(synopsis "Primitive token list editor")
|
||||
(description
|
||||
"Just like @code{sed} is a stream editor, @code{ted} is a token list editor.
|
||||
The @code{ted} package provides two user macros: @code{\\Substitute} and
|
||||
@code{\\ShowTokens}. The first is maybe the most useful: it performs
|
||||
substitutions in token lists (even inside braces). The second displays each
|
||||
token of the list (one per line) with its catcode (in the list, not just the
|
||||
current one), and can be useful for debugging or for TeX learners. Ted is
|
||||
designed to work well even if strange tokens (that is, unusual
|
||||
@samp{@{charcode, catcode@}} pairs or tokens with a confusing meaning) occur
|
||||
in the list.")
|
||||
(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
|
||||
|
|
Loading…
Reference in a new issue