Olá, Pessoal.
Eu estava querendo aprender mais sobre o latex enquanto estou escrevendo o meu relatório de estágio e resolvi passar as minhas tabelas de tabular e table para tikz.
Eu encontrei como se faz uma tabela no tikz através de array, só tive um problema: como mesclar células. Procurei em vários lugares e não encontrei como se faz.
Achei ele muito interessante, pois, você pode atribuir uma largura para célula do título e a partir dela fazer a sua tabela.
\documentclass[tikz,margin=3mm]{standalone}
\usetikzlibrary{chains, positioning}
\begin{document}
\begin{tikzpicture}[
node distance = 0mm,
start chain = going right,
N/.style = {draw,
minimum width=#1 mm,
outer sep=0pt,
text height=2ex, text depth=0.5ex,
on chain},
]
\node (n11) [N=140,fill={rgb,255:red,65; green,105; blue,225}] at (0,0) {Cronograma};
\node (n21) [N=40,below right=of n11.south west,fill={rgb,255:red,0; green,191; blue,225}] {Data};
\node (n22) [N=100,fill={rgb,255:red,0; green,191; blue,225}] {Conteúdo};
\node (n31) [N=40,below right=of n21.south west, fill=gray!30] {00/00/21};
\node (n32) [N=100, fill=gray!30] {Geometria Espacial – Cones};
\node (n41) [N=40,below right=of n31.south west,fill=gray!80] {00/00/21};
\node (n42) [N=100,fill=gray!80] {Geometria Espacial – Esferas};
\node (n51) [N=40, below right=of n41.south west, fill=gray!30] {00/00/21};
\node (n52) [N=100, fill=gray!30] {Geometria Analítica - Ponto};
\node (n61) [N=40,below right=of n51.south west,fill=gray!80] {00/00/21};
\node (n62) [N=100,fill=gray!80] {Geometria Analítica - Estudo da Reta};
\node (n71) [N=40,below right=of n61.south west, fill=gray!30] {00/00/21};
\node (n72) [N=100, fill=gray!30] {Geometria Analítica - Estudo da Reta};
\node (n81) [N=40,below right=of n71.south west,fill=gray!80] {00/00/21};
\node (n82) [N=100,fill=gray!80] {Geometria Analítica - Estudo da Circunferência};
\node (n91) [N=40,below right=of n81.south west, fill=gray!30] {00/00/21};
\node (n92) [N=100, fill=gray!30] {Geometria Analítica - Estudo da Circunferência};
\end{tikzpicture}
\end{document}