Steve Litt wrote:
I have a special LyX URL environment that references LaTeX URLL environment
that redefines quote, but no matter how hard I try, I can't get it to
underline more than the first character of the URL. I already have the ulem
package loaded, not that it's helped me.
Here's one of the things I tried:
\let\URLL=\quote
\let\endURLL=\endquote
\renewenvironment{URLL}{%
\begin{quote}%
\small\begin{uline}%
}{%
%modifications in the end of the environment
\end{uline}%
\end{quote}%
}
I also tried removing the \begin, and the entire \end{uline} -- no joy. What
can I do?
write into the preamble:
\usepackage{url}
\let\OldUrl\url
\renewcommand\url[1]{\underline{\OldUrl{#1}}}
and use insert->url in the usual way
Herbert