Mit Latex-Software geht es so, Beispiel:
\begin{tabular}{ c c c }
cell1 & cell2 & cell3 \\
cell4 & cell5 & cell6 \\
cell7 & cell8 & cell9
\end{tabular}
Hier im Forum (wir verwenden bekanntermaßen Mathjax) klappt dies jedoch nicht, hier nutzt du entweder direkt die HTML-Tabelle (so mache ich es) und setze dort Inline-Latex. Oder du gehst den Umweg über array
und hline
:
\begin{array}{|c|c|c|c|}
\hline
1 & 2 & 3 & 4 \\ \hline
a & b & c & d \\ \hline
5 & 6 & 7 & 8 \\ \hline
e & f & g & h \\ \hline
\end{array}
Test: Latex-Assistent aufrufen
Resultat:
$$ \begin{array}{|c|c|c|c|}\hline 1& 2 & 3 & 4 \\ \hline a & b & c & d \\ \hline 5 & 6 & 7 & 8 \\ \hline e & f & g & h \\ \hline \end{array} $$