I have this as my current table which is fine, but I would like there to be vertical lines too just to make it look that bit neater. I'd also like horizontal lines between each row but this would require resizing the rows to avoid the fractions on the right column clashing with the line?
\begin{center}
\begin{tabular}{cc}
\toprule
\bfseries $f(t)$ &
\bfseries $\Lap[f(t)]$\\
\midrule
$k$ & $\frac ks$ \\ $e^{at}$ & $\frac{1}{s-a}$ \\ $\sin{(at)}$ & $\frac{a}{s^2+a^2}$ \\ $\cos{(at)}$ & $\frac{s}{s^2+a^2}$ \\ $t^n$ & $\frac{n!}{s^{n+1}}$ \\ $\sinh{(at)}$ & $\frac{a}{s^2-a^2}$ \\ $\cosh{(at)}$ & $\frac{s}{s^2-a^2}$ \\
\bottomrule
\end{tabular}
\end{center}


\begin{tabular}{|c|c|}? – Christian R. Feb 5 at 14:21booktabs, see the manual or tex.stackexchange.com/questions/88929/…. With\midrules you won't get any clashing, by the way. – Torbjørn T. Feb 5 at 14:23booktabs. Thebooktabsdocumentation has some very good arguments about why for most tables, vertical lines are not appropriate. See e.g. Vertical lines are discontinuous with booktabs. – Alan Munn Feb 5 at 14:24\hlinefor horizontal lines. – David Carlisle Feb 5 at 14:34\toprule,\midruleentailsbooktabsuse. (But I agree that Danny should turn this into a compilable example.) – Alan Munn Feb 5 at 15:02