ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Postponed footnotes and pagebreaks
@ 2020-09-30 15:52 Denis Maier
  2020-09-30 17:03 ` Pablo Rodriguez
  0 siblings, 1 reply; 4+ messages in thread
From: Denis Maier @ 2020-09-30 15:52 UTC (permalink / raw)
  To: ntg-context

Hi,

postponing footnotes when using tables causes the footnote often to 
appear on the next page, which may not always be wanted. Is there a way 
to keep the footnote on the same page in these situations?

Best,
Denis

___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Postponed footnotes and pagebreaks
  2020-09-30 15:52 Postponed footnotes and pagebreaks Denis Maier
@ 2020-09-30 17:03 ` Pablo Rodriguez
  2020-10-02 11:00   ` Denis Maier
  0 siblings, 1 reply; 4+ messages in thread
From: Pablo Rodriguez @ 2020-09-30 17:03 UTC (permalink / raw)
  To: ntg-context

On 9/30/20 5:52 PM, Denis Maier wrote:
> Hi,
>
> postponing footnotes when using tables causes the footnote often to
> appear on the next page, which may not always be wanted. Is there a way
> to keep the footnote on the same page in these situations?

Hi Denis,

this options might help:

  \setupnote
      [footnote]
      [split=verystrict,
       scope=text]

Just in case it helps,

Pablo
--
http://www.ousia.tk
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Postponed footnotes and pagebreaks
  2020-09-30 17:03 ` Pablo Rodriguez
@ 2020-10-02 11:00   ` Denis Maier
  2020-10-07  9:53     ` Keep postponed footnotes on page where called Denis Maier
  0 siblings, 1 reply; 4+ messages in thread
From: Denis Maier @ 2020-10-02 11:00 UTC (permalink / raw)
  To: mailing list for ConTeXt users, Pablo Rodriguez

Am 30.09.2020 um 19:03 schrieb Pablo Rodriguez:
> On 9/30/20 5:52 PM, Denis Maier wrote:
>> Hi,
>>
>> postponing footnotes when using tables causes the footnote often to
>> appear on the next page, which may not always be wanted. Is there a way
>> to keep the footnote on the same page in these situations?
> 
> Hi Denis,
> 
> this options might help:
> 
>    \setupnote
>        [footnote]
>        [split=verystrict,
>         scope=text]

Thanks, I'll try. The problem is that I have multiplage tables, and I 
want the notes on the appropriate pages. I think postponed footnotes are 
actually called after the table is already finished so the notes always 
appear at the last page of the table, which in many cases is not what 
you'd want.

Best,
Denis

___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Keep postponed footnotes on page where called
  2020-10-02 11:00   ` Denis Maier
@ 2020-10-07  9:53     ` Denis Maier
  0 siblings, 0 replies; 4+ messages in thread
From: Denis Maier @ 2020-10-07  9:53 UTC (permalink / raw)
  To: mailing list for ConTeXt users, Pablo Rodriguez

Am 02.10.2020 um 13:00 schrieb Denis Maier:
> Am 30.09.2020 um 19:03 schrieb Pablo Rodriguez:
>> On 9/30/20 5:52 PM, Denis Maier wrote:
>>> Hi,
>>>
>>> postponing footnotes when using tables causes the footnote often to
>>> appear on the next page, which may not always be wanted. Is there a way
>>> to keep the footnote on the same page in these situations?
>>
>> Hi Denis,
>>
>> this options might help:
>>
>>    \setupnote
>>        [footnote]
>>        [split=verystrict,
>>         scope=text]
> 
> Thanks, I'll try. The problem is that I have multiplage tables, and I 
> want the notes on the appropriate pages. I think postponed footnotes are 
> cactually alled after the table is already finished so the notes always 
> appear at the last page of the table, which in many cases is not what 
> you'd want.

Ok, no luck.

With this example, the notes always appear after the table. (Pablo's 
settings from above make no difference.)


```
\setuppapersize[A6][A6]
\starttext

\startpostponingnotes
\bTABLE[split=yes]
\dorecurse{20}{
\bTR \bTD a\footnote{A footnote} \eTD \eTR
}
\eTABLE
\stoppostponingnotes

\stoptext
```

Is there anything else I can try? Or is that simply not possible? The 
problem is that I have a table where it is really awkward to have the 
notes after the table. (I think with localfootnotes it will be more or 
less the same as they appear where flushed, i.e. also after the table.)

Best,
Denis
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

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

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-30 15:52 Postponed footnotes and pagebreaks Denis Maier
2020-09-30 17:03 ` Pablo Rodriguez
2020-10-02 11:00   ` Denis Maier
2020-10-07  9:53     ` Keep postponed footnotes on page where called Denis Maier

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).