Am 03.12.2010 um 15:45 schrieb Wolfgang Schuster:


Am 03.12.2010 um 13:03 schrieb Andreas Harder:

Hi all,

it took me a while to track this down. It seems that if one uses \in[…] and \footnote{…} in the same paragraph the following \noindentation-command is ignored. Here is an example:

You’re wrong, the indentation for the blockquote comes from the leftmargin setting which indents the whole paragraph at the left and the right margin, you can change this and the real indentation with

\setupdelimitedtext[blockquote][indenting=no,leftmargin=no]

Hello Wolfgang,

thanks for replying.  That's not what I want; I've made a new example. The problem occurs only in the first case (with \in[] and \footnote{} in the paragraph)

\setupindenting[big,yes]
\setupdelimitedtext[blockquote][indenting={yes,next},style=red]
% \setupdelimitedtext[blockquote][before=\noindentation,style=red]

\starttext  \showframe[text][text]
\startbuffer
\startblockquote
  \dorecurse{3}{Is this paragraph indented? It should not!}\par
  \dorecurse{3}{Is this paragraph indented? It should! }
\stopblockquote
\stopbuffer

Test \in[someref] test\footnote{footnote}.  \getbuffer % not OK!
Test test\footnote{footnote}.               \getbuffer % OK
Test \in[someref] test.                     \getbuffer % OK
\stoptext

Greeting
Andreas