I have enclosed the sample code of a Routh Array Table. I wish to highlight the first column of the Table.
One way to do is to run the LaTeX, get a PDF output, save as image, highlight the first column using Paint or such software, and call the image using the Figure environment in LaTeX. This seems to be quite a long route!
I'd like to know if there is a direct way to mark the first column of the Routh Array in LaTeX.
\documentclass[12pt]{report}
\begin{document}
The Routh array is:
\begin{tabular}{c|cc}
$s^3$ & $1$ & $2$ \[2mm]
$s^2$ & $1$ & $24$ \[2mm]
$s^1$ & $-22$ & $0$ \[2mm]
$s^0$ & $24$ & $0$ \[2mm]
\end{tabular}
\end{document}

