I want to have not only italic numbers but also italic dollar sign in Latex math mode.
I found that some people get this with the \pounds symbol, however I do not achieve to do it and anyways this seems to be an undesired effect: Special sign \pounds changed to dollar sign in alignment surrounding
So what is the proper way to get an italic dollar sign? If numbers can be italic, sure the dollar sign can be, right?
Added a minimal working example:
\documentclass[]{article}
\usepackage[T1]{fontenc}
\begin{document}
\begin{tabular}{lll}
\verb+\$+ & \$ & as expected\\
\verb+\textit{\$}+ & \textit{\$} & as expected\\
\verb+$\$$+ & $\$$ & as expected\\
\verb+$\mathit\$$+ & $\mathit\$$ & not expected\\
\verb+$\mathit{\mathchar"0024}$+ & $\mathit{\mathchar"0024}$ & not expected\\
\verb+$\mathit{\mathdollar}$+ & $\mathit{\mathdollar}$ & not expected\\
\end{tabular}
\end{document}



\textit{\$}works. – Bernard Apr 27 '16 at 21:33${\emph \$}$and$\emph \$$both work. – A Feldman Apr 27 '16 at 23:07\textit{}? – cfr Apr 28 '16 at 00:11$\emph \$$and\textit{\$}achieve the same output, which is the text-mode italic dollar. However I use non-italic and italic dollar signs quite close to each other, and now they look quite different. To make it look nice I ended up using only text-mode dollar signs: instead of\$I now use\text{\$}and for italic dollar I use\textit{\$}in math mode. – peschü Apr 28 '16 at 06:32