Wolfgang Schuster
Am 26.05.2011 um 16:02 schrieb Marco Pessotto:
So what's the correct way to force a line break without starting a new paragraph, like \\ in LaTeX? Maybe the paragraph is marked also by more spacing, and that particular linebreak is not meant to be a paragraph ending. Like, e.g., for poems. And I believed the \crlf was the correct way to do it. Please correct me if I'm wrong.
To suppress whitespace between paragraph you can use the packed environment.
For poems i suggest to use the lines environment where the end of each line is also the end of a paragraph, you can also change the alignment of the content with the align key of the environment, e.g.
\startlines[align=middle] … \stoplines
or change the settings global (i.e. \setuplines[align=middle]).
Wolfgang
Ok, thanks for your answers. -- Marco