So positionieren Sie XY-Pic-Paketzeichnungen

So positionieren Sie XY-Pic-Paketzeichnungen

Ich habe dieses grundlegende XY-pic Paket zeichnen

\begin{displaymath}
    \xymatrix{A & B \\
              C & D }
\end{displaymath}

Und wenn ich den Code in Latex eingebe, wird er in der Mitte der Seite gezeichnet. Wie kann ich diese Zeichnung genau so positionieren, wie ich sie haben möchte?

PS: Und wie wirft man eine Zeichnung in eine Latex-Box?

Antwort1

Versuchen

 \documentclass{amsart}
 \usepackage{tikz}
 \usepackage{graphicx}
 \usetikzlibrary{calc}
 \usepackage[all]{xy}
 \begin{document}
 \hfill{}This matrix \fbox{\xymatrix{A & B \\ C & D }} is off to the right.
 \begin{center}
 This matrix \fbox{\xymatrix{A & B \\ C & D }} is centered.
 \end{center}
 \par\noindent{}This one \fbox{\xymatrix{A & B \\ C & D }} is on the left.
 \begin{tikzpicture}[remember picture,overlay]
   \node[anchor=south west,inner sep=0pt] at ($(current page.south west)+(0cm,0cm)$) {
      \fbox{\xymatrix{A & B \\ C & D }}
   };
   \node[anchor=south east,inner sep=0pt] at ($(current page.south east)+(0cm,0cm)$) {
      \fbox{\xymatrix{A & B \\ C & D }}
   };
   \node[anchor=north west,inner sep=0pt] at ($(current page.north west)+(0cm,0cm)$) {
      \fbox{\xymatrix{A & B \\ C & D }}
   };
   \node[anchor=north east,inner sep=0pt] at ($(current page.north east)+(0cm,0cm)$) {
      \fbox{\xymatrix{A & B \\ C & D }}
   };
 \end{tikzpicture}
 \end{document}

Das Ergebnis ist eine Ausgabe wie:

Ausgabe der Tex-Datei

verwandte Informationen