Consider this example:
\documentclass{report}
\usepackage{lipsum}
\begin{document}
\begin{tabular}{lll}
A & B & \lipsum[1][1-3]
\end{tabular}
\end{document}
the last column goes out of the bounds of the page. I could constrain the last column by using\begin{tabular}{llp{3cm}}. However, it would be more convenient to make the table span textwidth automatically. How to do it?


tabularxis probably what you are looking for. – moewe Jan 19 '19 at 19:30tabular*withpcolumn type ortabularx. – Zarko Jan 19 '19 at 19:30