Estou com um problema com alinhamento vertical em um tabular
ambiente com tikzpicture
.
Meu código até agora é:
\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}
o que dá um resultado:
Mas o que eu quero é mais assim:
Como eu posso fazer isso?
Responder1
Você pode usar a baseline
opção para o seu tikzpicture
s. (Use $\ast$
em vez de plain *
, para ajustar a linha 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}
Responder2
Uma maneira é definir a baseline
chave do ambiente
\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}
O outro está desenhando todo pelo 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}