I'm trying to do this table in the code section below. I've tried many options and I've read many threads and topics, but I can't make the row height equal to some rows. Independently, if some row has two or one line. Moreover, I want centre alignment to both position (vertical and horizontal) in each cell.
I've tried \renewcommand{\arraystretch}{0.2} into \begin{table}\end{table} but the problem persists.
Can someone help me?
PS: I expect to be clear about the problem.
Code: Select all
\documentclass [a4paper,12pt]{article}
\usepackage [latin1,utf8]{inputenc}
\usepackage [brazil] {babel} % Pacote utilizado (babel)
\usepackage {glossary}
\usepackage {colortbl}
\begin{document}
\definecolor{titlecolor}{RGB}{240,240,240}
\begin{center}
\newcommand{\thistablespace}{0.2in}
\begin{longtable}[H]{|>{\raggedright\arraybackslash}m{2in}|c|c|c|c|}
\hline
\rowcolor{titlecolor}
\multicolumn{1}{|>{\columncolor{titlecolor}}c|}{\textbf{Nome}} &
\textbf{Status} &
\textbf{Custo Estimado\footnote{Horas necessárias para que uma única mão de obra complete a tarefa.}} &
\textbf{Prioridade} &
\textbf{Risco}\\
\hline
Gerenciamento de Perfil do Jogo & Proposto & 1000 & Crítica & Crítico\\
[\thistablespace]
\hline
Armazenamento de Perfil em Banco de Dados & Proposto & 500 & Crítica & Crítico\\
[\thistablespace]
\hline
Geração do Módulo Web\footnote{Applet ou Binário executável em navegador web.} & Proposto & 500 & Crítica & Crítico\\
[\thistablespace]
\hline
Geração do Banco de Dados do Módulo Web & Proposto & 500 & Crítica & Crítico\\
[\thistablespace]
\hline
Relatório do Módulo Web & Proposto & 300 & Importante & Significativo\\
[\thistablespace]
\hline
Armazennamento de Perfil em Arquivo & Proposto & 500 & Dispensável & Significativo\\
[\thistablespace]
\hline
Geração de Binário Java & Proposto & 500 & Dispensável & Significativo\\
[\thistablespace]
\hline
\end{longtable}
\end{center}
\end{document}