[Tex/LaTex] A problem with \times

symbols

I am at my wits end trying to get the following right in my document

10% x 90(degrees)

the syntax I have tried are the following

10\% $\times$ 90\degree (get the undefined symbol error)

$ 10\% \times 90\degree $ (get the undefined symbol error)

10\% \times 90\degree (get the missing $ symbol error)

Can someone please tell me how to get this simple thing right?

Best Answer

An examination of the actual error message reveals that it's not \times but \degree that's causing the "undefined control sequence" problem. You need to define the macro \degree first. I suggest you define it as follows:

\newcommand\degree{{}^\circ}

With this definition, the macro must be used in math mode -- which, I assume, is OK.

You can then write

$10\% \times 90\degree$
Related Question