On 04/16/2011 04:12 PM, Richard Heck wrote:
On 04/16/2011 03:59 PM, Julien Rioux wrote:
On 16/04/2011 3:40 PM, Marcus Kriele wrote:
I am trying to address bug #7301 concerning the Springer layout
files,
On looking at this now, I see that NextNoIndent should work the way
Marcus describes. Here is the relevant code, from
TextMetrics::leftMargin():
// This happens after sections in standard classes. The 1.3.x
// code compared depths too, but it does not seem necessary
// (JMarc)
if (tclass.isDefaultLayout(par.layout())
&& pit> 0&& pars[pit - 1].layout().nextnoindent)
parindent.erase();
So in fact what this does is suppress the indentation if the current
paragraph is Standard (or whatever the default is) and the previous
paragraph had NextNoIndent. Marcus, did you try the NextNoIndent thing
and it didn't work, or was the documentation too confusing for you
even to try it?
I'll fix the docs.
Thanks, I must have done something wrong when I tried it yesterday. The
description in the documentation is clear, and I could get it to work now.
Marcus