我想添加\hfill
前环境中的一列tabular
:
\documentclass{article}
\begin{document}
\begin{tabular}{p{2cm}@{}l}
\hfill First & Second\\
\hfill Very long & Fourth
\end{tabular}
\end{document}
我想要并得到的输出是(第一列左对齐):
FirstSecond
Very longFourth
现在我想做同样的事情,但\hfill
在标题中添加,例如:
\begin{tabular}{@{\hfill}p{2cm}@{}l}
First & Second\\
Very long & Fourth
\end{tabular}
我得到的是不一样的:
First Second
Very long Fourth
我猜是在第零列之后或类似的地方@{\hfill}
添加了\hfill
,而不是在第一列的文本之前。这个问题可以修复吗?