3 Comments

  1. Andy

    Is there a way to remove the space between the less/greater equal signs?

    It always makes a space between sign and number. I tried following:

    $\le200$
    \le200
    \le~200

    but doesn’t remove the space..

    • tom

      Hi Andy,

      You could add a thin “negative space” space (\!) or two, if you’d rather not have the space:

      \documentclass{article}
      \begin{document}
      
      $\le200$
      
      $\le\!200$
      
      $\le\!\!200$
      
      \end{document}

Leave a Reply