[Tex/LaTex] Indent all but first lines of paragraph.

indentationparagraphstablestwo-column

Inside of a table column with a width determined by a p{5in} tag, I want all but the first line of text to be indented.

Is there any way to achieve this? Doing it by hand would make later edits overly cumbersome.

Thanks!

Best Answer

\everypar{\hangindent1em \hangafter1} seems to do what you want.

\documentclass{article}
\usepackage[margin=1in]{geometry}
\usepackage{lipsum}
\begin{document}
\noindent
\begin{tabular}{cp{5in}c}
X&\everypar{\hangindent1em \hangafter1} \lipsum[1-3]&X
\end{tabular}
\end{document}
Related Question