Function: math-compose-tex-sqrt

math-compose-tex-sqrt is a byte-compiled function defined in calc-lang.el.gz.

Signature

(math-compose-tex-sqrt A)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-lang.el.gz
(defun math-compose-tex-sqrt (a)
  (list 'horiz
        "\\sqrt{"
        (math-compose-expr (nth 1 a) 0)
        "}"))