Padding in tabular caused by \left

alignmenttables

in tabular environment, I would like to use \left. in one row but not in some another one. It results in items not verticaly aligned in the table column.

Here is the affected minimal example:

\begin{tabular}{ll}
    one & $85$ \\
    two & $\left.85\right\rbrace$ \\
\end{tabular}

looks like this, see the right column:

display sample

How to make those 85 numbers be aligned vertically?

Thanks

Best Answer

You want to remove the \nulldelimiterspace:

\left.\kern-\nulldelimiterspace 85\right\}

On the other hand, I can't see what good the \left-\right pair is doing.

Related Question