I'm using \sidesubfloat to put two pictures in a row. I want to put a text over one of the pictures using \put command. I used the following code:
\begin{figure}
\setlength{\unitlength}{\linewidth}
\centering
\sidesubfloat[]{\includegraphics[scale=0.45]{FIGS/Vinesa1.pdf}\label{fig:vinesa.vectors}}~
\sidesubfloat[]{\includegraphics[scale=0.45]{FIGS/Vinesa2.pdf}\label{fig:vinesa.bend}}
\put(0,0){My TEXT}
\end{figure}
But it does not work well. It just puts the text on right corner of the figure with any x and y coordinates entered for \put(x,y) command.
There is no problem in figures without \sidesubfloat command.
How can I solve this problem?