Amy
Amy

Reputation: 35

How to type '<' in latex

I would like to type less than the symbol '<' in latex. Does anybody know how?

Upvotes: 1

Views: 435

Answers (1)

panadestein
panadestein

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

Related Questions