![A figura girada se move para a direita do documento](https://rvso.com/image/298828/A%20figura%20girada%20se%20move%20para%20a%20direita%20do%20documento.png)
Quero girar um sólido 3D usando tikz-3dplot em um ambiente de subfigura (também estou usando a classe de documento IEEEtran). Quando executo a rotação, a figura gira conforme o esperado, mas se move para a extrema direita de uma coluna (em um documento de 2 colunas). Por exemplo, tenho uma matriz de subfigura {ab\cd} em uma coluna. Se eu quiser traçar a figura na posição c, ela sobrescreve à direita da posição d. Existe algum conselho para corrigir esse problema.
\subfigure[$\xi$]{
\tdplotsetmaincoords{60}{125}
\tdplotsetrotatedcoords{0}{0}{10}
\begin{tikzpicture}
[ %tdplot_main_coords,
tdplot_rotated_coords,
cube/.style={very thick,black},
grid/.style={very thin,gray},
axis/.style={-latex,black,thin}]
%draw the axes
\draw[axis,tdplot_main_coords] (0,0,0) -- (1.2,0,0) node[anchor=east]{$\xi_{1}$};
\draw[axis,tdplot_main_coords] (0,0,0) -- (0,1.2,0) node[anchor=west]{$\xi_{2}$};
\draw[axis,tdplot_main_coords] (0,0,0) -- (0,0,2) node[anchor=west]{$\xi_{3}$};
%draw the top and bottom of the cube
\draw[cube] (0,0,0) -- (-0.2,0.3464,0.4) -- (-0.4,0,0.8);
\draw[cube,dotted] (-0.4,0,0.8) -- (-0.2,-0.3464,0.4) -- (0,0,0);
\draw[cube] (0.4,0,0.4) -- (0.2,0.3464,0.8) -- (0,0,1.2) -- (0.2,-0.3464,0.8) -- cycle;
%draw the edges of the cube
\draw[cube] (0,0,0) -- (0.4,0,0.4);
\draw[cube] (-0.2,0.3464,0.4) -- (0.2,0.3464,0.8);
\draw[cube] (-0.4,0,0.8) -- (0,0,1.2);
\draw[cube,dotted] (-0.2,-0.3464,0.4) -- (0.2,-0.3464,0.8);
\end{tikzpicture}
}