I would like to reproduce similar Table from MS Word:
--

--
to LaTeX. It's 2 enumerated Equations inside Table (in first 2 columns) where there's only one Equation ID in last one column.
I've coded this in LaTeX:
Code: Select all
\begin{table}[!h]
\caption{Cinética da evaporação da umidade adaptada de \citeonline{Benkoussas2007}.}
\centering
\scriptsize
\begin{tabular}{p{30mm} p{35mm} p{20mm} p{20mm} p{20mm} p{8mm}}%{c c c c c c}
\hline
Taxa da reação ($R_j$) & Taxa específica da reação ($k_j$) & Fator pré-exponencial ($A_j$)\footnotemark[1] & Energia de ativação ($E_j$)\footnotemark[1] (kJ/mol) & Calor de reação ($\Delta H_j$) (kJ/kg) & \\
\hline
$R_m = k_mT^{-1/2}\rho_m$ & $k_m = A_m\exp{\left(-\frac{E_m}{RT_s}\right)}$ & 1,0 \cdot 10^4s^{-1} & 57 & 2.2269,7 & \begin{equation}\end{equation}\\
\hline
\multicolumn{6}{l}{\footnotemark[1]{Estimado}}
\end{tabular}
\label{tab:reacevap}
\end{table}
And I obtained this:
--

--
There're 2 problems:
(1) the vertical space in last column is bigger than others;
(2) when I refered this Table in text using \autoref it appears the label of Equation ("Equação") and the enumeration of Table ("4.6").
My main question is: What's best way to do this task?
Any suggestion'll be welcome...
[]'s
Rodolfo