Tikz wird von Manuscriptcentral falsch behandelt

Tikz wird von Manuscriptcentral falsch behandelt

Ich reiche einen Aufsatz über Manuscriptcentral ein. Der Aufsatz verwendet tikz. Hier ist der Code für eine dieser Abbildungen:

%in preamble
\tikzset{box/.style={draw, minimum width = 1.cm, minimum height = 1.cm, text width=1cm, text centered, fill=white},
slantedbox/.style={draw,trapezium,trapezium left angle=70,trapezium right angle=-70, fill=colora!5, label={[shift={(-5ex,-3.5ex)}]top right corner:#1}}
}

%in main text

\begin{figure}
\begin{center}
\begin{tikzpicture}
\node [box] (phiQQ) at (0,0) {$\phi_{QQ}$};
\node [box] (phiQA) at (3,0) {$\phi_{QA}$};
\node [box] (phiQ*A) at (6,0) {$\phi_{Q^*A}$};
\node [box] (phiAA) at (4.5,-1.75) {$\phi_{AA}$};
\node [box] (phi*QA) at (3,-5) {$\phi^*_{QA}$};
\node [box] (phi*Q*A) at (6,-5) {$\phi^*_{Q^*A}$};
\node [box] (phi*AA) at (4.5,-6.75) {$\phi^*_{AA}$};
\node [box] (phi**AA) at (4.5,-10) {$\phi^{**}_{AA}$};
\path [->] (phiQQ) edge node {}(phiQA);
\path [->] (phiQA) edge [out=0,in=90] node {} (phiAA);
\path [->] (phiQA) edge node {} (phiQ*A);
\path [->] (phiQA) edge [out=270,in=180] node {} (phiAA);
\path [->] (phiQ*A) edge [out=270,in=0] node {} (phiAA);

\path [->, left] (phiQA) edge node[pos=0.7] {$\beta \phi_{QA}$} (phi*QA);
\path [->,right] (phiQ*A) edge node[pos=0.7]  {$\beta \phi_{Q^*A}$} (phi*Q*A);
\path [->,right] (phiAA) edge node[pos=0.3] {$2\beta\phi_{AA}$} (phi*AA);

\path [->] (phi*QA) edge [out=0,in=90] node {} (phi*AA);
\path [->] (phi*QA) edge node {} (phi*Q*A);
\path [->] (phi*QA) edge [out=270,in=180] node {} (phi*AA);
\path [->] (phi*Q*A) edge [out=270,in=0] node {} (phi*AA);

\path [->,right] (phi*AA) edge node[pos=0.35] {$\beta\phi^*_{AA}$} (phi**AA);

\begin{pgfonlayer}{background}
\node [slantedbox = $\xi$, fit = (phiQQ)(phiQA)(phiQ*A)(phiAA), minimum height = 3.4cm] at (3,-1) (xi) {};
\node [slantedbox = $\xi_*$, fit = (phi*QA)(phi*Q*A)(phi*AA), minimum height = 3.4cm] at (4,-5.75) (xi*) {};
\node [slantedbox = $\xi_{**}$, fit = (phi**AA), minimum height = 2.6cm] at (4.5,-10) (xi**) {};
\end{pgfonlayer}

Nachdem Manuscriptcentral es in die Hände bekommen und mir den pdfKorrekturabzug gegeben hat, sieht die entsprechende Seite so aus:

Bildbeschreibung hier eingeben

Es sollte sein:

Bildbeschreibung hier eingeben

Irgendwelche Ideen, wo das Problem liegt, und eine (mit geringem Aufwand verbundene) Methode, es zu beheben?

verwandte Informationen