I have this table, in which the text is touching the horizontal lines above and below, I tried some of the solutions to stretch the cells I found in the web. I managed to stretch the cell but I can't keep it center aligned.
This would be a MWE:
\documentclass[a4paper,11pt,twoside]{article}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{array}
\usepackage{mathtools}
\usepackage{mathabx}
\everymath{\displaystyle}
\usepackage{tabularx}
\begin{document}
\begin{table}[H]
\centering
\begin{tabularx}{1.3\textwidth}{ c | X }
\hline
Objetivos de diseño & $\frac{W_{TO}}{S_w} $, $\frac{T_{TO}}{W_{TO}} $, $A$, $C_{Do}$, $\varphi$, $N_e$, $C_{Lmax_{TO}}$, $C_{Lmax_{L}}$, $C_{Lmax}$ \\\hline
Especificaciones iniciales & $\frac{W_{CR}}{W_{TO}}$, $\frac{W}{W_{TO}}$, $\frac{W_{L}}{W_{TO}}$, $q$, $\sigma$, $S_{TO}$, $S_e$, $n$ \\\hline
Factores adicionales & $\frac{T_{TO}}{T_2} $, $\gamma$, $\eta$, $c_T$, $\frac{T_{TO}}{T_{CR}} $\\ \hline
\end{tabularx}
\end{table}
\end{document}


X-column). Do you want them centred? – Werner Sep 06 '14 at 17:18\renewcommand{\arraystretch}{<num>}(as suggested in Column and row padding in tables) and update theX-column to use anm-type column instead of the defaultp-type column (as suggested in Vertical alignment intabularxX-column type). That is,\renewcommand{\tabularxcolumn}[1]{m{#1}}. – Werner Sep 06 '14 at 17:33