I am trying to figure out how to highlight numbers in tabulars with circles (well, ellipses), ideally not with the large overhead of tikz. Something along the following, except that I don't know how 1 to autosize and autoplace the ellipses around the text=number based on the height and width of the text=number; and [2] how not to make it interfere with the tabular column justification. Is this easy or hard? Advice appreciated (as always).
\documentclass[12pt]{standalone}
\usepackage{ellipse}
\usepackage{color}
\setlength{\unitlength}{12pt}%
%% should not interfere with placement of number in table.
\newcommand{\enumber}[1]{
\begin{picture}(0,0)
\linethickness{1.5pt}%
%% dimensions should be autosized (ideally, even height, but width is more important)
%% location needs to be vertically centered
\put(0,0.25){\color{red}\ellipse{2}{0.5}}%
\put(0,0){\makebox[0mm][c]{#1}}
\end{picture}
}
\begin{document}
\begin{tabular}{lcr}
Left & Center & Right \\
\hline
12.0 & 22.0 & 32.0 \\
1212.0 & 2222.0 & 3232.0 \\
\enumber{12.0} & 22.0 & 32.0 \\
1212.0 & \enumber{2222.0} & 3232.0 \\
1212.0 & 2222.0 & \enumber{3232.0} \\
\end{tabular}
\end{document}


