回転した図は文書の右側に移動します

回転した図は文書の右側に移動します

サブフィギュア環境内で 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}
    }

関連情報