Am 01.07.2011 um 09:46 schrieb Thomas Schmitz:
Hi all,
two questions here:
1. Is it possible to define a blank so that the paragraph after it will not be indented (in a document which otherwise does have indents)? I looked at \defineblank and the new \definevspacing, but couldn't find anything appropriate.
You can use the fancybreak module for this.
2. I want footnotes placed at the bottom of the page so that the vertical place is filled (so with a flexible vertical space between text and notes), but on the last page of every chapter, the publisher prefers the footnotes right below the text, not at the bottom of the page. Is this feasible?
Endnotes at the end of each chapter are easy when you use start/stopchapter because you can flush them with the “aftersection” key. \usemodule[fancybreak] \definefancybreak[myblank][indentnext=no] \setupnote[footnote][location=none] \setuphead[chapter][aftersection={\placenotes[footnote]}] \setupindenting[yes,medium] \starttext \startchapter[title={Knuth}] \input knuth \blank \input knuth \myblank \input knuth \stopchapter \startchapter[title={Ward}] \dorecurse{12}{\input ward \footnote{Footnote #1}\par} \stopchapter \stoptext Wolfgang