Is there any small and simple program (or even library) that can render LaTeX locally as you type?
I'm looking for something pretty much like this page, which auto-renders immediately as you type, except that it:
Must not need any internet connection
Should be as "lightweight" as possible (it shouldn't even depend on a browser, if that can be avoided... a standalone executable would be ideal)
(The goal is to avoid going having to go through the pain of creating LaTeX documents every time you want to write a little expression to paste somewhere else, but without needing an internet connection or another program to run it.)
If there is even a C/C++-compatible library that could convert a basic LaTeX equation to a PNG file (or SVG or whatever), that would be fine too; I could write a front-end for it pretty easily.

\begin{document}! – Joseph Wright Feb 07 '12 at 08:19LaTeXiT windowsand found these... specifically, KLatexFormula. The font is ugly/too soft for my eyes but otherwise it seems to be what I want... – user541686 Feb 07 '12 at 09:12TeXinstalled you could simply use tex to image over command line. It doesn't render as you type, but is the equivalent to a standalone executable and does not require you to create a complete document just to get an image of a formula. It will also allow you to use the full power ofTeXin terms of any packages that you may desire. – Peter Grill Feb 07 '12 at 16:28