Gedrehte Figur bewegt sich nach rechts im Dokument

Gedrehte Figur bewegt sich nach rechts im Dokument

Ich möchte einen 3D-Festkörper mit tikz-3dplot in einer Subfigure-Umgebung drehen (ich verwende auch die IEEEtran-Dokumentenklasse). Wenn ich die Drehung durchführe, dreht sich die Figur wie erwartet, bewegt sich aber ganz nach rechts in eine Spalte (in einem 2-spaltigen Dokument). Beispielsweise habe ich eine Subfigure-Matrix {ab \ cd} in einer Spalte. Wenn ich die Figur an Position c zeichnen möchte, überschreibt sie die Position d rechts. Gibt es einen Rat, um dieses Problem zu beheben?

\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}
    }

verwandte Informationen