缩进表格跨越文本宽度

缩进表格跨越文本宽度

我希望表格缩进,但不希望第二列超出右边距。

\documentclass{report}
\usepackage{lipsum}

\begin{document}

\lipsum[1]

\begin{tabular*}{\linewidth}{@{}l@{\extracolsep{\fill}}r@{}}
Entry 11 & Entry 12 \\
Entry 21 & Entry 22 
\end{tabular*}

\end{document}

我的例子基于这个答案

相关内容