On Wed, Jan 21, 2009 at 2:47 PM, Cecil Westerhof
2009/1/21 Wolfgang Schuster
: On Tue, Jan 20, 2009 at 10:28 PM, Cecil Westerhof
wrote: With setupindenting I can define the level of indenting. But I want a different level of indentation for different paragraphs. How can I do this?
You can define a environment for special sections and set a different indent parameter inside of this section. I need more information to give you a better answer.
In my template I have: \long\def\letterbody#1{\blank[line]\setupindenting[yes, medium]#1}
\long\def\letterbody#1% {{\blank[line]\setupindenting[yes,medium]#1\par}} You could also write this as environment with \definestartstop [letterbody] [before={\blank[line]}, commands={\setupindenting[yes,medium]}] and write in your document \startletterbody letter content \stopletterbody Wolfgang