Posicionamento de texto dentro da célula da tabela

Posicionamento de texto dentro da célula da tabela

Minha tabela construída resulta no seguinte:

insira a descrição da imagem aqui

No entanto, quero colocar a marca de seleção e os símbolos de cruz centralizados verticalmente. Como eu faço isso? Aqui está o meu código:

\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}

Responder1

Por aqui?

\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}

tabular com coluna matemática e coluna m

informação relacionada