I am writing a beamer and use
\begin{align*}
\pounds^i_M etc.
\end{align*}
on a slide. The pounds sign then changes to a dollar sign. How do I write to get the pounds sign?
\documentclass{beamer}
\usepackage{amssymb}
\usepackage{apalike}
\usepackage{multicol}
\usepackage[all]{xy}
\usepackage[ngerman]{babel}
%\usepackage[applemac]{inputenc}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{endnotes}
\def\L{\mathcal{L}}
\setlength{\unitlength} {1mm}
\usetheme{Madrid}
\begin{document}
\frame { \maketitle}
\frame{ \frametitle{Prescriptions of \pounds \ I: Classical logical maxims} \begin{align*}
\pounds^i_M & \qquad A\rightarrow (B\rightarrow A)
\end{align*}
}
\end{document}



\documentclass…to\end{document}. By the way, what's the meaning of that? I would never think (in my head) about “pounds_M^i”. – Manuel Feb 09 '14 at 14:53\def\L{\mathcal{L}} \setlength{\unitlength} {1mm} \usetheme{Madrid} \begin{document}
\frame { \maketitle}
\frame{ \frametitle{Prescriptions of \pounds \ I: Classical logical maxims}
\begin{align} \pounds^i_M & \qquad A\rightarrow (B\rightarrow A) \end{align}
}
\end{document}
– Frode Alfson Bjørdal Feb 09 '14 at 15:13\let\whatever\poundswhere\whateveris a more appropriate name for the symbol. And then use\whatever_i^M. In that case reading/writing your code would be better (I think). – Manuel Feb 09 '14 at 15:29\L. Don't use\defif you're not sure; use a name such as\cLor similar. – egreg Feb 09 '14 at 17:13