On p. 428 of the TeXbook, Knuth uses large vertical braces (through the \hidebrace command, of which I cannot find documented anywhere) to show different sections of fonts. I was looking to use a similar technique to achieve the following in LaTeX:
/ \documentclass[12pt]{article}
| \usepackage[utf8]{inputenc}
preamble < \usepackage[margin=25mm]{geometry}
| \usepackage{lmodern}
\ \usepackage{amsmath}
\begin{document}
/ Hello World from \LaTeX !
body < $$e^x$$
\ That's some cool math, and quite honestly a bad example.
\end{document}
Obviously I am looking to make the braces and the text on the left pretty (not verbatim). Any thoughts?

