
Meine erstellte Tabelle ergibt folgendes:
Ich möchte die Häkchen- und Kreuzsymbole jedoch vertikal zentriert platzieren. Wie mache ich das? Hier ist mein Code:
\begin{tabular}
{|p{1.5cm}|p{3.5cm}|c|c|c|c|c|c|c|}
\hline
Anonym & Precision degradation, Random shift, Black
marker, Prefix preserving, Truncation & \checkmark & \checkmark & \checkmark & \checkmark & \times & \times & \times\\ \hline
\end{tabular}
Antwort1
Hier entlang?
\documentclass{article}
\usepackage{array,amssymb, amstext}
\newcolumntype{C}{>{$}c<{$}} % math-mode version of "c" column type
\begin{document}
\begin{tabular}
{|p{1.5cm}|m{3.5cm}|C|C|C|C|C|C|C|}
\hline
Anonym & Precision degradation, Random shift, Black
marker, Prefix preserving, Truncation & \checkmark & \checkmark & \checkmark & \checkmark & \times & \times & \times\\ \hline
\end{tabular}
\end{document}