Aren't formulas easy to insert in plain text?
The problem with maths notation is that it was invented by sighted people for sighted people as a short hand for very complex ideas, which at the time weren't fully understood.
If you want to type equations use s-expressions, the clarity you get from saying what you mean is astonishing.
(define integral
(lambda (function)
;; Implementation of Risch algorithm left
;; as an exercise to the motivated reader.
))
(define definite-integral
(lambda (lower-bound upper-bound function)
(let ((anti-derivative (integral function)))
(- (anti-derivative upper-bound)
(anti-derivative lower-bound)))))
Hey look, you don't need the dummy variable explicitly any more. It's almost like it's a relic from a time before people understood what function application actually was.If you want the implicit mess (and incredible power) of higher maths, be prepared to deal with the the mess of typography. Which is why you need TeX, or worse.