In the minimal example below, I want to create an empty space to the right of the paragraph using \parshape. However, the first line is indented and spills over into the empty space. I don't want that. How do I get all the lines to end at the same place to create a neat, empty square?
\documentclass{article}
\usepackage{lipsum}
\begin{document}
\parshape=5
0pt 0.5\textwidth
0pt 0.5\textwidth
0pt 0.5\textwidth
0pt 0.5\textwidth
0pt \textwidth
\lipsum[1]
\end{document}


\parshapeaccordingly. – gablin Aug 31 '13 at 16:58\parshapeis the 'box' you pour text into, the indent is part of the 'filling'. You can set up some code to remove the indent if you want: perhaps we might have a bit more context? (I don't see why\noindentis no good in the example as written.) – Joseph Wright Aug 31 '13 at 17:01\parshapeworks as expected! Thank you! =D – gablin Aug 31 '13 at 17:07babelpackage as you recommended, and now the empty square looks nice and... square. =) – gablin Aug 31 '13 at 17:08