I use the TikZ library calendar to produce a week list. The code looks like this:
\documentclass{article}
\usepackage{pgf,tikz}
\usetikzlibrary{calendar}
\begin{document}
\tikz\calendar[dates=2011-02-01 to 2011-02-last,week list];
\end{document}
However, I want to add abbreviated captions for the weekdays (M, T, W, ...) in the first line of the week list:
M T W T F S S
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28
I couldn't find any option to the \calendar macro which produces this effect. Is there any other solution to achieve my goal?

\dand\l(it should be\foreach \d/\l in {0/M,1/T,2/W,3/T,4/F,5/S,6/S} {, otherwise, I get an error message). – diabonas Feb 04 '11 at 12:39