How can I make the much bigger" sign >>? When I just write >> latex sees it as 2 signs and there is a huge space in beween.
Anyone who can help?
Math & Science ⇒ How can I make the "much bigger" sign >>?
NEW: TikZ book now 40% off at Amazon.com for a short time.

How can I make the "much bigger" sign >>?
Hi,
use \gg form amssymb:
Valuable resources for symbols:
http://detexify.kirelabs.org/classify.html
and
The Comprehensive LaTeX Symbol List.
use \gg form amssymb:
Code: Select all
\documentclass{article}
\usepackage{amssymb}
\begin{document}
$a\gg b$
\end{document}
http://detexify.kirelabs.org/classify.html
and
The Comprehensive LaTeX Symbol List.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: How can I make the "much bigger" sign >>?
Thx alot mate!