I have a multicolumn element which I am not sure how to align with the rest of the table.
The code:
\documentclass{article}
\begin{document}
\begin{tabular}{l|p{0.5\linewidth}}
Item 1 & This part contains multiple lines and I want the multicolumn on the bottom to align with it. \\
Item 2 & Something else here. \\
\hline
\multicolumn{2}{p{0.6\linewidth}}{I want this text to be aligned with the rest of the columns.}
\end{tabular}
\end{document}
I want the bottom part to align with the red line (from the other columns). What is the approach to achieve this?



ptype column for the first column as well and set the\multicolumnwith\multicolumn{2}{p{\dimexpr0.5\linewidth+<wd of first>+2\tabcolsep}}(and ifarrayis loaded, you'd have to also include+\arrayrulewidth). – Skillmon Nov 03 '20 at 14:54