I am trying to include link in my references. The link contains % character in it. In order for % to behave as normal character I am escaping it with \ character. But I am getting an
! Missing $ inserted.
<inserted text>
$
l.614 ...ia.org/wiki/Shamir\%27s_Secret_Sharing''}
error.
Here is the line that is producing this error
\hyperref[shamir]{''http://en.wikipedia.org/wiki/Shamir\%27s_Secret_Sharing''}
I am using hyperref package for adding links.

\hyperref[shamir]{http://en.wikipedia.org/wiki/Shamir\%27s_Secret_Sharing}. In fact, the''s put you into mathematics mode, hence the error about a missing$. – Apr 23 '15 at 06:28