I am new to LaTeX and have a problem with the line
The difference is that the signing key \emph{x} is split into two pieces, \begin{math}
\emph{x_{L}}\end{math} and \begin{math}\emph{x_{R}}\end{math} and are both elements of the
\begin{math}\textbf{Z}_{q}\end{math}.
I get the error
! Missing $ inserted.
<inserted text>
I am a little confused why I am getting this error since I have put the _ in a math section. Any help would be great.
Thanks!


\emphis a text-mode command, so even though it's within a math-mode environment, a_will be recognized as text. in fact, unless you've done something unusual, the math will be set automatically in italic, so there should be no need for the\emph. also, a shorter way to input in-line math is\( x_L \)and you don't need to bury single-letter subscripts in braces. these things will come with time. – barbara beeton Sep 26 '12 at 16:41