How can I insert a word in a presentation title that looks like a proof-reader's remark. For example, consider the following:
\documentclass{beamer}
\begin{document}
\title{Lorem ipsum sit amet}
\maketitle
\end{document}
I'd like to turn this into the following if possible, with a roughly cursive font (it shouldn't be too pretty).

I think it can be done with TikZ, using something like (pseudo code)
\tikz[overlay,remember picture]
{
\node at ($(current position)$) [rotate=30] {\textcolor{red}{dolor}};
}
The two things I haven't been able to get right are
- What to use in place of my
current positionplaceholder - How to modify the font only for the word
dolor
Alternate approaches (or if there's a package available that does this) are also welcome.

