I want to know, how to decrease/increase the distance between month label and the calendar. There seem to be no "month label xshift" key.
Here is an MWE to play with:
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{calendar}
\begin{document}
\begin{tikzpicture}[scale=.8]
\calendar (mycal) [dates=2013-01-01 to 2013-01-last, week list, month label left vertical];
\draw[red, thick] (mycal-2013-01-28) circle (7.3pt);
\end{tikzpicture}
\end{document}
With following result:


every month/.append style={xshift=.5cm}. – Qrrbrbirlbel Feb 8 at 14:02calendarlibrary as well (month label left verticalsetsevery month/.append style{..., xshift=...}too). – Jake Feb 8 at 14:08