Although this is not strictly mathematical notation, I would like to denote an object with a calligraphy capital T and subscript non-italic P. I have this:
\newcommand{\timeP}{$\mathcal{T}_\mathsf{P}$}
That works fine, \timeP gives me TP. Now I need a variant where the P is surrounded by parentheses. But this:
\newcommand{\timePVirt}{$\mathcal{T}_{(\mathsf{P})}$}
just produces the same result as above. The desired result is T(P).
Any ideas? A special escape character? My document uses package amsmath.
EDIT
Indeed the commentators are right---the parentheses should be there. It seems the problem is caused by the combination of these imports:
\usepackage{MnSymbol}
% --- Font choice
% nightmare! leave alone for your own sanity
% first choice roman is mathptmx - nice!
\usepackage{mathptmx}
The second one mathptmx was in some document later imported through \input of the thesis template I was using, whereas I added MnSymbol directly to the cls file. Now when I reverse their order:
\usepackage{mathptmx}
\usepackage{MnSymbol}
...the parentheses come back. I think I got the meaning of the comment nightmare!.
\timePshould create the desired result. Could you provide a complete (minimal) example that shows the problem? – Martin May 19 '12 at 20:19We call this time virtual or prospective performance time, denoted \timeVirt-- with the above definition, the parentheses are just not printed, so there is no visible difference between\timePand\timePVirt– Emit Taste May 19 '12 at 20:27