答案1
withtabularx
包很简单:
\documentclass{report}
\usepackage{tabularx} % <---
\usepackage{lipsum}
\noindent
\begin{document}
\begin{tabularx}{\linewidth}{llX} % table width is determined with \linewidth
% at least one column had to be `X` type
A & B & \lipsum[66]
\end{tabularx}
\noindent
\begin{tabularx}{\linewidth}{@{} llX @{}} % border \tabcolsep is suppressed
A & B & \lipsum[66]
\end{tabularx}
\begin{table}[htb] % table is in float environment
\begin{tabularx}{\linewidth}{@{}llX@{}} % border \tabcolsep is suppressed
A & B & \lipsum[66]
\end{tabularx}
\end{table}
\end{document}