I am using LaTeX but embedded in XML. I would like to not have to use > and < directly inside the LaTeX parts.
On the other hand, I would like to not have to write them as HTML entities (> and <) either. This is such that I can take the LaTeX portions directly and compile them without having to convert the HTML entities into the characters > and <.
Is there are standard LaTeX command for the symbols > and < in math mode?
\let\lt<and\let\gt>will allow you to use\ltfor<and\gtfor>. But I don't know whether you're able to make those definitions anywhere in your XML... – Werner Mar 09 '16 at 17:21\letis a TeX primitive command. It is better practice to use\newcommand{\lt}{<}, etc. – Tony Mottaz Mar 09 '16 at 19:00\ltand\gt. – Werner Mar 09 '16 at 19:13