Function: math-compose-tex-intv
math-compose-tex-intv is a byte-compiled function defined in
calc-lang.el.gz.
Signature
(math-compose-tex-intv A)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-lang.el.gz
(defun math-compose-tex-intv (a)
(list 'horiz
(if (memq (nth 1 a) '(0 1)) "(" "[")
(math-compose-expr (nth 2 a) 0)
" \\ldots "
(math-compose-expr (nth 3 a) 0)
(if (memq (nth 1 a) '(0 2)) ")" "]")))