Tengo un problema con la alineación vertical en un tabular
entorno con tikzpicture
.
Mi código hasta ahora es:
\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}
lo que da como resultado:
Pero lo que quiero es más como esto:
¿Cómo puedo hacerlo?
Respuesta1
Puede utilizar la baseline
opción para su tikzpicture
s. (Úselo $\ast$
en lugar de simple *
, para ajustar la línea de base)
\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}
Respuesta2
Una forma es establecer la baseline
clave del entorno.
\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}
El otro está dibujado todo por 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}