I want to encapsulate text in a sort of inline "dialogue bubble". To do this I defined
% overline text
\newcommand{\textoverline}[1]{$\overline{\mbox{#1}}$}
as seen here, and defined my dialogue box as
% dialogue box
\newcommand{\Say}[1]{%
\textless(\underline{\textoverline{``{#1}''}})
}
which ends up looking like this:
I was wondering how to match the under- and overlines to the encapsulating parentheses, and how to extend the lines a bit to overlap
more with the parentheses. I looked into using the soul package but
couldn't get it to work correctly :/
ADDITION: How can I have it wrap text automatically?
Thanks!

