Inserting < and > symbols in LaTeX
After several tries, I have been thinking that the only way to write a lesser than (<) and greater than (>) charecters in LaTeX was adding to the header
\usepackage[T1]{fontenc}
In fact, if not specified, < will become ¡ and > will become ¿, not very helpful to write HTML/XML code. However, with including the package above, fonts will mess the PDF document…
Kaiser found out about this using one of the 2 methods below:
\verb+<<< >>>+{\tt <<< >>>}
The first is mainly used for a raw code-like text, whereas the second is more suitable in a normal text.

July 24th, 2006 at 6:06 pm
J’ai pas compris ce que tu ve faire car $>$ et $
July 24th, 2006 at 6:10 pm
Was the message broken due to a bad HTML code?
Well, i wanted to write documentation about XML (thus containing markup codes) in a TeX document…
July 25th, 2006 at 6:21 pm
You can always use the \begin{verbatim} environment. Fixed width, interprets everything literally.
July 25th, 2006 at 6:29 pm
\begin{verbatim}…\end{verbatim} forces you to make a line return; not a great idea to include tags within description.