Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

When typing < or > in LaTeX and compiling with pdflatex, the less than and greater than symbols appear at upside down exclamation points. I'm not in math mode.

share|improve this question
using it in a regression results table in a paper. – biased_estimator Aug 28 '10 at 2:44
@ShreevatsaR: "This example holds true for all cases where n >= 3". – SabreWolfy Feb 2 '12 at 13:02

4 Answers

up vote 49 down vote accepted

Geoffs tip with \textless and \textgreater will work well for you. However, you could type these symbols < and > directly in your editor and they would be correctly printed if you use the recommended font encoding, Cork resp. T1:

\usepackage[T1]{fontenc}

Have a look at the T1 encoding table, search for the symbols < and >. Afterwards, open the OT1 encoding table, which is the default. At the two corresponding places you will find the upside down exclamation resp. quotation mark. That should explain it.

For further reasons, why you should use T1 encoding, have a look at this question: Why should I use \usepackage[T1]{fontenc}?

You should use a font supporting T1. For instance use the very good Latin Modern font, derived from the standard fonts:

\usepackage{lmodern}

Or install the cm-super package which provides the standard Computer Modern fonts with T1 support.

share|improve this answer
thanks! this T1 worked like a charm. – biased_estimator Aug 28 '10 at 2:45
Further reading: Latin Modern vs cm-super? – doncherry Jan 31 at 6:46

What I usually do is just enter mathmode to type them, e.g. This object is $<$ that object.

share|improve this answer
6  
That is generally considered poor style. You should just write out "This object is less than that object." Occasionally, you'll see "foo is <0." This looks bad. – TH. Aug 27 '10 at 23:32
4  
That's definitely true. However, if you're using LaTeX to organize your thoughts (as i often do), 'good style' equates to 'will I understand what I wrote if I come back and look at it in a week'! – Avi Steiner Sep 3 '10 at 3:30

May be using some other sane font encoding, something like \usepackage[T1]{fontenc} or something. (Well, I don't think any of this legacy font encoding and input encoding is sane any way).

share|improve this answer

Use \textless and \textgreater.

share|improve this answer
2  
unless they are part of a math expression, in which case they should be between dollar signs or \( ... \) along with the rest of the math expression. – barbara beeton Aug 26 '10 at 19:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.