![La figura girada se mueve hacia la derecha del documento.](https://rvso.com/image/298828/La%20figura%20girada%20se%20mueve%20hacia%20la%20derecha%20del%20documento..png)
Quiero rotar un sólido 3D usando tikz-3dplot dentro de un entorno de subfigura (también estoy usando la clase de documento IEEEtran). Cuando realizo la rotación, la figura gira como se esperaba pero se mueve hacia el extremo derecho de una columna (en un documento de 2 columnas). Por ejemplo, tengo una matriz de subfigura {ab\cd} en una columna. Si quiero trazar la figura en la posición c, se sobrescribe a la derecha de la posición d. ¿Hay algún consejo para corregir ese 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}
}