Code: Select all
\begin{table}[t]
\centering
\begin{tabular}{|l|l|}
\hline
A & B \\ \hline
$S^O_w$ & 1.18 \\ \hline
$S^I_s$ & 1.49 \\
\hline
\end{tabular}
\end{table}
The superscript and subscript are touching the line. Is there any way to add space between them and the line?
I have tried the [3pt] in the following code
Code: Select all
\begin{table}[t]
\centering
\begin{tabular}{|l|l|}
\hline \\[3pt]
A & B \\[3pt] \hline \\[3pt]
$S^O_w$ & 1.18 \\[3pt] \hline \\[3pt]
$S^I_s$ & 1.49 \\[3pt]
\hline
\end{tabular}
\end{table}
But the line break on the right side
Thanks in advance
Aman