I have a problem with the subfigenvironment. My two graphs created with pgfplots are too large to stay together. How can I fix that?
% Graphique
\begin{figure}
\centering
\subfloat[]{$\tau = \SI{0.1}{\second}$}
{\begin{tikzpicture}
\begin{axis}[title={Trajectoire de la balle dans le plan $x$-$z$}, xlabel={$x$}, ylabel={$z$},%
legend cell align=left]
\addplot[red,thick,each nth point={10}]
table[x index=1,y index=3] {Data/magnus_nog_not_dt0.1s.dat};
\legend{}
\end{axis}
\end{tikzpicture}} \quad
\subfloat[]{$\tau = \SI{0.001}{\second}$}
{\begin{tikzpicture}
\begin{axis}[title={Trajectoire de la balle dans le plan $x$-$z$}, xlabel={$x$}, ylabel={$z$},%
legend cell align=left]
\addplot[red,thick,each nth point={10}]
table[x index=1,y index=3] {Data/magnus_nog_not_dt0.001s.dat};
\legend{}
\end{axis}
\end{tikzpicture}}
\caption[]{}\label{g:nognot}
\end{figure}
% Graphique
Ps: I didn't provide a MWE because you need files to compile my graphs.

width=0.4\textwidth? – percusse Oct 6 '12 at 20:31subfigthat permit to the environment to exceed \textwidth... No? There is anything to do? – R. M. Oct 6 '12 at 21:00