I am usig two different systems to write my presentation. on linux I use texmaker and everything works fine. But when I move to mac and use texshop I encounter the above error in the following part:
where $V \in \mathbb{R}_\textbf{+}^{m \times n}$ ,$W \in \mathbb{R}_\textbf{+}^{m \times k}$, $H \in \mathbb{R}_\textbf{+}^{k \times n}$ and $k <<min\{m,n\}$.
minimal example:
\documentclass{beamer}
% \usepackage{beamerthemesplit} // Activate for custom appearance
\title{Example }
\date{\today}
\begin{document}
\begin{frame}
\frametitle{Non-negative Matrix Factorization}
where $V \in \mathbb{R}_\textbf{+}^{m \times n}$ ,$W \in \mathbb{R}_\textbf{+}^{m \times k}$, $H \in \mathbb{R}_\textbf{+}^{k \times n}$ and $k <<min\{m,n\}$.
\end{frame}
\end{document}
The way to fix it is to change _\textbf{+} to simple _+. the only related problem I could find was this post, but it didn't help
_\textbf{+}that is unreliable, try_{\textbf{+}}, I'd use\bmfrom thebmpackage instead of\textbf– daleif Sep 11 '14 at 08:08bmbut it gives the same error._{\textbf{+}}worked,thanks . why it is unreliable? – Moj Sep 11 '14 at 08:31_{\bm{+}}– Moj Sep 11 '14 at 08:34