Vertikale Ausrichtung mit tikzpicture

Vertikale Ausrichtung mit tikzpicture

Ich habe ein Problem mit der vertikalen Ausrichtung in einer tabularUmgebung mit tikzpicture.

Mein Code bisher ist:

\documentclass[12pt,a4paper]{article}
\usepackage{tikz}
\begin{document}
\begin{tabular}{ccccc}
\begin{tikzpicture}
  \draw[step=0.2cm,gray,very thin] (0,0) grid (0.2,1.6);
\end{tikzpicture} 
& = & 
\begin{tikzpicture}
  \draw[step=0.2cm,gray,very thin] (0,0) grid (3,1.6);
\end{tikzpicture}
& * & 
\begin{tikzpicture}
  \draw[step=0.2cm,gray,very thin] (0,0) grid (0.2,3);
\end{tikzpicture}
\end{tabular}
\end{document}

was zu einem Ergebnis führt: Bildbeschreibung hier eingeben

Aber was ich will, ist eher so etwas: Bildbeschreibung hier eingeben

Wie kann ich es tun?

Antwort1

baselineSie können die Option für Ihr s verwenden tikzpicture. (Verwenden Sie $\ast$anstelle von einfachem *, um die Grundlinie anzupassen.)

\documentclass{article}
\pagestyle{empty}% for cropping
\usepackage{tikz}
\begin{document}
\begin{tabular}{ccccc}
    \begin{tikzpicture}[baseline={(0,1.4-1.4/2)}]
        \draw[step=0.2cm,gray,very thin] (0,0) grid (0.2,1.6);
    \end{tikzpicture} 
    & = & 
    \begin{tikzpicture}[baseline={(0,1.4-1.4/2)}]
        \draw[step=0.2cm,gray,very thin] (0,0) grid (3,1.6);
    \end{tikzpicture}
    & $\ast$ & 
    \begin{tikzpicture}[baseline={(0,2.8-1.4/2)}]
        \draw[step=0.2cm,gray,very thin] (0,0) grid (0.2,3);
    \end{tikzpicture}
\end{tabular}
\end{document}

Bildbeschreibung hier eingeben

Antwort2

baselineEine Möglichkeit besteht darin, den Schlüssel der Umgebung festzulegen

\documentclass{standalone}
\usepackage{tikz}
\begin{document}

\begin{tabular}{ccccc}
\begin{tikzpicture}[baseline=(current bounding box.center)]
  \draw[step=0.2cm,gray,very thin] (0,0) grid (0.2,1.6);
\end{tikzpicture} 
& = & 
\begin{tikzpicture}[baseline=(current bounding box.center)]
  \draw[step=0.2cm,gray,very thin] (0,0) grid (3,1.6);
\end{tikzpicture}
& * & 
\begin{tikzpicture}[baseline={([yshift=0.7cm]current bounding box.center)}]% We know the step
  \draw[step=0.2cm,gray,very thin] (0,0) grid (0.2,3);
\end{tikzpicture}
\end{tabular}

\end{document}

Bildbeschreibung hier eingeben

Die andere Zeichnung ist komplett von TikZ,

\documentclass[border=5mm]{standalone}
\usepackage{tikz}
\begin{document}

\begin{tabular}{ccccc}
\begin{tikzpicture}[baseline=(current bounding box.center)]
  \draw[step=0.2cm,gray,very thin] (0,0) grid (0.2,1.6);
\begin{scope}[shift={(0.8,0)}]
  \draw[step=0.2cm,gray,very thin] (0,0) grid (3,1.6);  
\end{scope}
\begin{scope}[shift={(4.4,-1.4)}]
  \draw[step=0.2cm,gray,very thin] (0,0) grid (0.2,3);  
\end{scope}
\node at (0.5,0.8) {$=$};
\node at (4.1,0.8) {${\times}$};
\end{tikzpicture}
\end{tabular}

\end{document}

Bildbeschreibung hier eingeben

verwandte Informationen