ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* footnotes, blank
@ 2011-07-01  7:46 Thomas Schmitz
  2011-07-01  8:04 ` Wolfgang Schuster
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Schmitz @ 2011-07-01  7:46 UTC (permalink / raw)
  To: mailing list for ConTeXt users

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
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: footnotes, blank
  2011-07-01  7:46 footnotes, blank Thomas Schmitz
@ 2011-07-01  8:04 ` Wolfgang Schuster
  2011-07-01  8:15   ` Thomas Schmitz
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Schuster @ 2011-07-01  8:04 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: footnotes, blank
  2011-07-01  8:04 ` Wolfgang Schuster
@ 2011-07-01  8:15   ` Thomas Schmitz
  2011-07-01  8:44     ` Wolfgang Schuster
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Schmitz @ 2011-07-01  8:15 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Fri, 1 Jul 2011 10:04:22 +0200
  Wolfgang Schuster <schuster.wolfgang@googlemail.com> 
wrote:
> 
> 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
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: footnotes, blank
  2011-07-01  8:15   ` Thomas Schmitz
@ 2011-07-01  8:44     ` Wolfgang Schuster
  2011-07-01  9:10       ` Thomas Schmitz
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Schuster @ 2011-07-01  8:44 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: footnotes, blank
  2011-07-01  8:44     ` Wolfgang Schuster
@ 2011-07-01  9:10       ` Thomas Schmitz
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Schmitz @ 2011-07-01  9:10 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Fri, 1 Jul 2011 10:44:35 +0200
  Wolfgang Schuster <schuster.wolfgang@googlemail.com> 
wrote:
> 

> 
> 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
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-07-01  9:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-01  7:46 footnotes, blank Thomas Schmitz
2011-07-01  8:04 ` Wolfgang Schuster
2011-07-01  8:15   ` Thomas Schmitz
2011-07-01  8:44     ` Wolfgang Schuster
2011-07-01  9:10       ` Thomas Schmitz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).