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. 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? Thanks and all best Thomas
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
On Fri, 1 Jul 2011 10:04:22 +0200
Wolfgang Schuster
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.
Ah yes, I see! Thanks Wolfgang, I will use that.
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.
No, that's not what I was asking. I want footnotes on every page, just the ones on the last page should be moved up to the end of the text, not down to the bottom of the page. I tried \setupfootnotes[location=high], but when I enable it for the entire document, it wreaks havoc (footnotes running off the page instead of breaking, very inconsistent spacing). So also tried to enable location=high manually just for the last paragraph of every chapter (and putting this paragraph into a group), but that doesn't seem to change anything. Thomas
Am 01.07.2011 um 10:15 schrieb Thomas Schmitz:
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. No, that's not what I was asking. I want footnotes on every page, just the ones on the last page should be moved up to the end of the text, not down to the bottom of the page. I tried \setupfootnotes[location=high], but when I enable it for the entire document, it wreaks havoc (footnotes running off the page instead of breaking, very inconsistent spacing). So also tried to enable location=high manually just for the last paragraph of every chapter (and putting this paragraph into a group), but that doesn't seem to change anything.
You have to set “location=page” at the begin of each new chapter. \setuphead [chapter] [beforesection={\page % Necessary! \setupnote[footnote][location=page]}, aftersection={\setupnote[footnote][location=high]}] \starttext \startchapter[title={Zapf}] \dorecurse{6}{\input zapf \footnote{Footnote #1}\par} \stopchapter \startchapter[title={Ward}] \dorecurse{12}{\input ward \footnote{Footnote #1}\par} \stopchapter \stoptext Wolfgang
On Fri, 1 Jul 2011 10:44:35 +0200
Wolfgang Schuster
You have to set location=page at the begin of each new chapter.
\setuphead [chapter] [beforesection={\page % Necessary! \setupnote[footnote][location=page]}, aftersection={\setupnote[footnote][location=high]}]
As always, you never cease to wow me - excellent, this looks very good! Thanks a bunch, and all best! Thomas
participants (2)
-
Thomas Schmitz
-
Wolfgang Schuster