![回転した図は文書の右側に移動します](https://rvso.com/image/298828/%E5%9B%9E%E8%BB%A2%E3%81%97%E3%81%9F%E5%9B%B3%E3%81%AF%E6%96%87%E6%9B%B8%E3%81%AE%E5%8F%B3%E5%81%B4%E3%81%AB%E7%A7%BB%E5%8B%95%E3%81%97%E3%81%BE%E3%81%99.png)
サブフィギュア環境内で tikz-3dplot を使用して 3D ソリッドを回転させたいです (IEEEtran ドキュメント クラスも使用しています)。回転を実行すると、フィギュアは期待どおりに回転しますが、列の右端に移動します (2 列のドキュメント内)。たとえば、列にサブフィギュア マトリックス {ab \ cd} があります。位置 c にフィギュアをプロットすると、位置 d の右側に上書きされます。この問題を修正するためのアドバイスはありますか。
\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}
}