I asked in this question Calligraphic numbers how to write a calligraphic number and got an answer.
Now I need a notation for k-subsets and use the answer as follows:
\documentclass[a4paper,11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{xspace}
%%% for caligraphic number
\newcommand*{\textcal}[1]{%
% family qzc: Font TeX Gyre Chorus (package tgchorus)
% family pzc: Font Zapf Chancery (package chancery)
\textit{\fontfamily{qzc}\selectfont#1}%
}
\newcommand{\ksubsets}[1]{\ensuremath{\textcal{2}^{#1}_{=k}}\xspace}
\begin{document}
\begin{equation}
\sum_{P'\in\ksubsets{P}} \prod_{x \in P'} p_{x}
\end{equation}
\end{document}

But I do not like how this looks. The 2 is too small. How can I change that?


\displaystylebefore\textcal, but that really looks horrible. – Peter Grill Jan 28 at 7:51