Reputation: 35
I would like to type less than the symbol '<' in latex. Does anybody know how?
Upvotes: 1
Views: 435
Reputation: 1291
Two possible ways of doing it. Use it depending on your needs:
\documentclass{article}
\begin{document}
Plain text: \textless{}
Equation: \(<\) % Or $<$
\end{document}
Upvotes: 2