views:

97

answers:

4
+3  Q: 

"<<" sign in Latex

Hello,

I need to add the symbol "<<" in Latex. If i simply write "<<", i get in pdf some strange symbols. What should i put in front of "<<" so that in .pdf i see "<<" ?

Thanks

A: 

I would recommend $<<$.

Chris Bunch
+15  A: 

Which "<<" symbol are you talking about? If you mean "much less than", then use \ll. If you mean the quotation mark, use \guillemotleft. If you mean two less-than symbols, use \textless \textless.

mipadi
+1  A: 

do you know detexify? it's an amazing web-app to help with questions like these. apart from that i'd use the suggestion of mipadi above...

Habi
+1  A: 

Simply typing << would give the expected output if you use T1 font encoding:

\usepackage[T1]{fontenc}

You won't get << in the output using the standard encoding OT1. Perhaps see the examples on Special LaTeX symbols.

Stefan

Stefan