-
Notifications
You must be signed in to change notification settings - Fork 134
Open
Milestone
Description
The following
\documentclass{article}
\usepackage{array}
\begin{document}
\begin{tabular}{c|p{2cm}|c}
a& a very long line, enough to wrap (p) & b
\end{tabular}
\begin{tabular}{c|m{2cm}|c}
a& a very long line, enough to wrap (m) & b
\end{tabular}
\begin{tabular}{c|b{2cm}|c}
a& a very long line, enough to wrap (b) & b
\end{tabular}
\end{document}should look like
but it comes out as
Even after temporarily setting .ltx_td { vertical-align: baseline !important; }, you get
There are three bugs here:
- The width of
p{2cm}gets lost. - All cells should be
vertical-align: baseline, no matter what. - The content of the column
mshould haveltx_align_middleinstead ofltx_align_top.
Changing all three manually gives you

Reactions are currently unavailable