ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* space between footnotes
@ 2012-06-01 19:51 Pablo Rodríguez
  2012-06-02  7:27 ` Philipp Gesang
  0 siblings, 1 reply; 13+ messages in thread
From: Pablo Rodríguez @ 2012-06-01 19:51 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi there,

I'm trying to add some space between footnotes, such as:

\setupnotation[footnote][numbercommand=,inbetween=\hskip.25em]
\starttext
\dorecurse{5}{foot\footnote{note}}
\stoptext

But neither inbetween or before work here, only after seems to work
(with beta from 2012.05.30).

Am I missing something or have I hit a bug?

Many thanks for your help,


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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: space between footnotes
  2012-06-01 19:51 space between footnotes Pablo Rodríguez
@ 2012-06-02  7:27 ` Philipp Gesang
  2012-06-02 13:25   ` Pablo Rodríguez
  0 siblings, 1 reply; 13+ messages in thread
From: Philipp Gesang @ 2012-06-02  7:27 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1685 bytes --]

Hi Pablo!

···<date: 2012-06-01, Friday>···<from: Pablo Rodríguez>···

> Hi there,
> 
> I'm trying to add some space between footnotes, such as:
> 
> \setupnotation[footnote][numbercommand=,inbetween=\hskip.25em]
                                                    ^^^^^^
Assuming instead that you intend to put some vertical distance
between the notes, you can try the “after” key:

\setupnotation[footnote][
  numbercommand=,
  after=\blank, %% hook you spacing macro in here
]

Else if you meant the space that separates the footnote number
from the note inserts, that would be the “distance” key:

\setupnotation[footnote][
  numbercommand=,
  distance=5em, %% expects dimension
]

Regards
Philipp



> \starttext
> \dorecurse{5}{foot\footnote{note}}
> \stoptext
> 
> But neither inbetween or before work here, only after seems to work
> (with beta from 2012.05.30).
> 
> Am I missing something or have I hit a bug?
> 
> Many thanks for your help,
> 
> 
> 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://tex.aanhet.net
> archive  : http://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________

-- 
()  ascii ribbon campaign - against html e-mail
/\  www.asciiribbon.org   - against proprietary attachments

[-- Attachment #1.2: Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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] 13+ messages in thread

* Re: space between footnotes
  2012-06-02  7:27 ` Philipp Gesang
@ 2012-06-02 13:25   ` Pablo Rodríguez
  2012-06-02 13:38     ` Wolfgang Schuster
  2012-06-02 13:42     ` Philipp Gesang
  0 siblings, 2 replies; 13+ messages in thread
From: Pablo Rodríguez @ 2012-06-02 13:25 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 02/06/12 09:27, Philipp Gesang wrote:
> Hi Pablo!
> 
> ···<date: 2012-06-01, Friday>···<from: Pablo Rodríguez>···
> 
>> Hi there,
>>
>> I'm trying to add some space between footnotes, such as:
>>
>> \setupnotation[footnote][numbercommand=,inbetween=\hskip.25em]
>                                                     ^^^^^^
> Assuming instead that you intend to put some vertical distance
> between the notes, you can try the “after” key:
> 
> \setupnotation[footnote][
>   numbercommand=,
>   after=\blank, %% hook you spacing macro in here
> ]

Hi Philipp,

many thanks for your reply and your help.

This is what I intended, but it has an undesired effect, it adds some
space after the last note in page (which, I'd like to avoid).

Here is a sample:

\definenote[showafter]
\definenote[showbefore]
\definenote[showbetween]
\definenote[shownt]
\setupnotation[footnote][numbercommand=]
\setupnotation[showafter][numbercommand=,after={\blank[5*big]}]
\setupnotation[showbefore][numbercommand=,before={\blank[5*big]}]
\setupnotation[showbetween][numbercommand=,inbetween={\blank[5*big]}]
\showframe
\starttext
\dorecurse{5}{foot\footnote{note}}
\page
\dorecurse{5}{foot\showafter{note}}
\page
\dorecurse{5}{foot\showbefore{note}}
\page
\dorecurse{5}{foot\showbetween{note}}
\stoptext


I need to add some space between the notes, but neither before the first
one nor after the last.

I thought inbetween was the right option for this. According to the
sample above, it doesn't seem to work (I don't see what changes with and
without inbetween=\blank[5*big]).

I have two questions:

Is inbetween the right option to add space only between notes?

If the answer is yes, I'm afraid I have hit a bug.

If the answer is no, what is inbetween supposed to do?

Many thanks for your help,



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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: space between footnotes
  2012-06-02 13:25   ` Pablo Rodríguez
@ 2012-06-02 13:38     ` Wolfgang Schuster
  2012-06-02 14:02       ` Pablo Rodríguez
  2012-06-02 13:42     ` Philipp Gesang
  1 sibling, 1 reply; 13+ messages in thread
From: Wolfgang Schuster @ 2012-06-02 13:38 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 02.06.2012 um 15:25 schrieb Pablo Rodríguez:

> On 02/06/12 09:27, Philipp Gesang wrote:
>> Hi Pablo!
>> 
>> ···<date: 2012-06-01, Friday>···<from: Pablo Rodríguez>···
>> 
>>> Hi there,
>>> 
>>> I'm trying to add some space between footnotes, such as:
>>> 
>>> \setupnotation[footnote][numbercommand=,inbetween=\hskip.25em]
>>                                                    ^^^^^^
>> Assuming instead that you intend to put some vertical distance
>> between the notes, you can try the “after” key:
>> 
>> \setupnotation[footnote][
>>  numbercommand=,
>>  after=\blank, %% hook you spacing macro in here
>> ]
> 
> Hi Philipp,
> 
> many thanks for your reply and your help.
> 
> This is what I intended, but it has an undesired effect, it adds some
> space after the last note in page (which, I'd like to avoid).
> 
> Here is a sample:
> 
> \definenote[showafter]
> \definenote[showbefore]
> \definenote[showbetween]
> \definenote[shownt]
> \setupnotation[footnote][numbercommand=]
> \setupnotation[showafter][numbercommand=,after={\blank[5*big]}]
> \setupnotation[showbefore][numbercommand=,before={\blank[5*big]}]
> \setupnotation[showbetween][numbercommand=,inbetween={\blank[5*big]}]
> \showframe
> \starttext
> \dorecurse{5}{foot\footnote{note}}
> \page
> \dorecurse{5}{foot\showafter{note}}
> \page
> \dorecurse{5}{foot\showbefore{note}}
> \page
> \dorecurse{5}{foot\showbetween{note}}
> \stoptext
> 
> 
> I need to add some space between the notes, but neither before the first
> one nor after the last.
> 
> I thought inbetween was the right option for this. According to the
> sample above, it doesn't seem to work (I don't see what changes with and
> without inbetween=\blank[5*big]).
> 
> I have two questions:
> 
> Is inbetween the right option to add space only between notes?
> 
> If the answer is yes, I'm afraid I have hit a bug.
> 
> If the answer is no, what is inbetween supposed to do?

Inbetween is the space between a description/enumeration title and content when you have the setup “alternative=top”.

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] 13+ messages in thread

* Re: space between footnotes
  2012-06-02 13:25   ` Pablo Rodríguez
  2012-06-02 13:38     ` Wolfgang Schuster
@ 2012-06-02 13:42     ` Philipp Gesang
  2012-06-02 14:17       ` Pablo Rodríguez
  1 sibling, 1 reply; 13+ messages in thread
From: Philipp Gesang @ 2012-06-02 13:42 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 2237 bytes --]

Hi Pablo!

···<date: 2012-06-02, Saturday>···<from: Pablo Rodríguez>···

> I have two questions:
> 
> Is inbetween the right option to add space only between notes?

Afaict *\setupnotation* has no “inbetween” key, but “\setupnote”
has. In the latter case it is only meaningful for paragraph-style
(serried) footnotes:

········································································
\setupnote[footnote][
  paragraph=yes,
  inbetween=\hskip 5em,
]
\starttext
\dorecurse{5}{foot\footnote{note}}
\stoptext
········································································

Unfortunately with ordinary settings it is ignored altogether.
The alternative you are looking for might be to locally set a
different parskip for the footnote inserts:

········································································
\setupnotation[footnote][
  before={\setupwhitespace[big]},
  numbercommand=,
]
\starttext
\dorecurse{5}{foot\footnote{note}}
\stoptext
········································································

Hth,
Philipp


> If the answer is yes, I'm afraid I have hit a bug.
> 
> If the answer is no, what is inbetween supposed to do?
> 
> Many thanks for your help,
> 
> 
> 
> 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://tex.aanhet.net
> archive  : http://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________

-- 
()  ascii ribbon campaign - against html e-mail
/\  www.asciiribbon.org   - against proprietary attachments

[-- Attachment #1.2: Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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] 13+ messages in thread

* Re: space between footnotes
  2012-06-02 13:38     ` Wolfgang Schuster
@ 2012-06-02 14:02       ` Pablo Rodríguez
  0 siblings, 0 replies; 13+ messages in thread
From: Pablo Rodríguez @ 2012-06-02 14:02 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 02/06/12 15:38, Wolfgang Schuster wrote:
> 
> Am 02.06.2012 um 15:25 schrieb Pablo Rodríguez:
>> [...]
>> Is inbetween the right option to add space only between
>> notes?
>> [...]
>> If the answer is no, what is inbetween supposed to do?
> 
> Inbetween is the space between a description/enumeration title and
> content when you have the setup “alternative=top”.

Many thanks for your reply, Wolfgang.

Now I understand that there is no way to avoid some extra space either
before the first note or after the last one.


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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: space between footnotes
  2012-06-02 13:42     ` Philipp Gesang
@ 2012-06-02 14:17       ` Pablo Rodríguez
  2012-06-02 15:03         ` Wolfgang Schuster
  0 siblings, 1 reply; 13+ messages in thread
From: Pablo Rodríguez @ 2012-06-02 14:17 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 02/06/12 15:42, Philipp Gesang wrote:
> Hi Pablo!
> 
> ···<date: 2012-06-02, Saturday>···<from: Pablo Rodríguez>···
> 
>> I have two questions:
>>
>> Is inbetween the right option to add space only between notes?
> 
> Afaict *\setupnotation* has no “inbetween” key, but “\setupnote”
> has.

Many thanks for your reply and your explanation, Philipp.

At strc-not.mkvi both "\setuptnotation" and "\setupnote" have an
"inbetween" option.

> In the latter case it is only meaningful for paragraph-style
> (serried) footnotes:
> 
> ········································································
> \setupnote[footnote][
>   paragraph=yes,
>   inbetween=\hskip 5em,
> ]
> \starttext
> \dorecurse{5}{foot\footnote{note}}
> \stoptext
> ········································································
> 
> Unfortunately with ordinary settings it is ignored altogether.

If this isn't a bug, I wonder whether this shouldn't be implemented. It
makes sense.

> The alternative you are looking for might be to locally set a
> different parskip for the footnote inserts:

It adds the space also before or after the first or last one (I guess
this is the way these options should work).

Many thanks for your help,


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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: space between footnotes
  2012-06-02 14:17       ` Pablo Rodríguez
@ 2012-06-02 15:03         ` Wolfgang Schuster
  2012-06-02 23:17           ` Pablo Rodríguez
  0 siblings, 1 reply; 13+ messages in thread
From: Wolfgang Schuster @ 2012-06-02 15:03 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 02.06.2012 um 16:17 schrieb Pablo Rodríguez:

> On 02/06/12 15:42, Philipp Gesang wrote:
>> Hi Pablo!
>> 
>> ···<date: 2012-06-02, Saturday>···<from: Pablo Rodríguez>···
>> 
>>> I have two questions:
>>> 
>>> Is inbetween the right option to add space only between notes?
>> 
>> Afaict *\setupnotation* has no “inbetween” key, but “\setupnote”
>> has.
> 
> Many thanks for your reply and your explanation, Philipp.
> 
> At strc-not.mkvi both "\setuptnotation" and "\setupnote" have an
> "inbetween" option.

When you print all footnotes entries in a single paragraph the inbetween parameter from \setupnote
is used to add something (can be a horizontal space or a symbol etc.) between the individual notes.

The inbetween parameter from \setupnotation is used when you have the setup \setupnotation[alternative=top].

>> In the latter case it is only meaningful for paragraph-style
>> (serried) footnotes:
>> 
>> ········································································
>> \setupnote[footnote][
>>  paragraph=yes,
>>  inbetween=\hskip 5em,
>> ]
>> \starttext
>> \dorecurse{5}{foot\footnote{note}}
>> \stoptext
>> ········································································
>> 
>> Unfortunately with ordinary settings it is ignored altogether.
> 
> If this isn't a bug, I wonder whether this shouldn't be implemented. It
> makes sense.

Add \setupnotation[footnote][display=no] and the example will work.

>> The alternative you are looking for might be to locally set a
>> different parskip for the footnote inserts:
> 
> It adds the space also before or after the first or last one (I guess
> this is the way these options should work).

It’s a bug because in the following example even the space between the notes is too big,
it should be 5mm but actually it’s 10mm.

\setupnotation[footnote][before={\blank[5mm]},after={\blank[5mm]}]

\starttext \showframe
\dorecurse{5}{foot\footnote{note} }
\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] 13+ messages in thread

* Re: space between footnotes
  2012-06-02 15:03         ` Wolfgang Schuster
@ 2012-06-02 23:17           ` Pablo Rodríguez
  2012-06-03  8:26             ` Wolfgang Schuster
  0 siblings, 1 reply; 13+ messages in thread
From: Pablo Rodríguez @ 2012-06-02 23:17 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 02/06/12 17:03, Wolfgang Schuster wrote:
> Am 02.06.2012 um 16:17 schrieb Pablo Rodríguez:
>> On 02/06/12 15:42, Philipp Gesang wrote:
>>> [...]
>>> In the latter case it is only meaningful for paragraph-style
>>> (serried) footnotes:
>>> ········································································
>>> \setupnote[footnote][
>>>  paragraph=yes,
>>>  inbetween=\hskip 5em,
>>> ]
>>> \starttext
>>> \dorecurse{5}{foot\footnote{note}}
>>> \stoptext
>>> ········································································
>>> Unfortunately with ordinary settings it is ignored altogether.
>>
>> If this isn't a bug, I wonder whether this shouldn't be implemented. It
>> makes sense.
> 
> Add \setupnotation[footnote][display=no] and the example will work.

Many thanks for your reply, Wolfgang.

If I didn't get your explanation wrong, this example should work:

\setupnote[footnote][inbetween=\blank]
\setupnotation[footnote][display=no]
\starttext
\dorecurse{5}{foot\footnote{note}}
\stoptext

I'm afraid it doesn't. What is wrong here?

>>> The alternative you are looking for might be to locally set a
>>> different parskip for the footnote inserts:
>>
>> It adds the space also before or after the first or last one (I guess
>> this is the way these options should work).
> 
> It’s a bug because in the following example even the space between the notes is too big,
> it should be 5mm but actually it’s 10mm.
> 
> \setupnotation[footnote][before={\blank[5mm]},after={\blank[5mm]}]

Are you sure that this is buggy? If each note should have 5mm before and
after it, I think the right space between notes should be 10mm (5mm
after the previous note plus 5mm before the next note). Maybe I'm being
too simplistic, but I think it's right.

Many thanks for your help,


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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: space between footnotes
  2012-06-02 23:17           ` Pablo Rodríguez
@ 2012-06-03  8:26             ` Wolfgang Schuster
  2012-06-03 13:26               ` Alan Bowen
  0 siblings, 1 reply; 13+ messages in thread
From: Wolfgang Schuster @ 2012-06-03  8:26 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 03.06.2012 um 01:17 schrieb Pablo Rodríguez:

>> Add \setupnotation[footnote][display=no] and the example will work.
> 
> Many thanks for your reply, Wolfgang.
> 
> If I didn't get your explanation wrong, this example should work:
> 
> \setupnote[footnote][inbetween=\blank]
> \setupnotation[footnote][display=no]
> \starttext
> \dorecurse{5}{foot\footnote{note}}
> \stoptext
> 
> I'm afraid it doesn't. What is wrong here?

You foot now “paragraph=yes”.

\setupnote    [footnote][paragraph=yes]
\setupnotation[footnote][display=no,alternative=serried]

\starttext \showframe
\dorecurse{5}{foot\footnote{note} }
\stoptext

>>>> The alternative you are looking for might be to locally set a
>>>> different parskip for the footnote inserts:
>>> 
>>> It adds the space also before or after the first or last one (I guess
>>> this is the way these options should work).
>> 
>> It’s a bug because in the following example even the space between the notes is too big,
>> it should be 5mm but actually it’s 10mm.
>> 
>> \setupnotation[footnote][before={\blank[5mm]},after={\blank[5mm]}]
> 
> Are you sure that this is buggy? If each note should have 5mm before and
> after it, I think the right space between notes should be 10mm (5mm
> after the previous note plus 5mm before the next note). Maybe I'm being
> too simplistic, but I think it's right.

No, that’s wrong. When you have to \blank one after another only the bigger
value is used and the other one is ignored. In the following example
the space between the two frames is 2 lines and not 3 lines because
the smaller value is ignored. It’s possible to add up both value or to
ignore the previous/next value but in this case you need an additional
keyword for \blank.

\defineframedtext[test][width=broad,align=middle]

\starttext \showgrid

\starttest[before={\blank[line]},after={\blank[2*line]}]
One
\stoptest

\starttest[before={\blank[line]},after={\blank[2*line]}]
One
\stoptest

\blank[4*line]

\starttest[before={\blank[2*line]},after={\blank[line]}]
One
\stoptest

\starttest[before={\blank[2*line]},after={\blank[line]}]
One
\stoptest

\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] 13+ messages in thread

* Re: space between footnotes
  2012-06-03  8:26             ` Wolfgang Schuster
@ 2012-06-03 13:26               ` Alan Bowen
  2012-06-03 13:54                 ` Wolfgang Schuster
  0 siblings, 1 reply; 13+ messages in thread
From: Alan Bowen @ 2012-06-03 13:26 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 3612 bytes --]

I have been following this with some interest, since I am having a similar
problem with the vertical spacing between notes in MKII.

In

\setupfootnotes[conversion=numbers,
way=bytext,location=page,rule=on,bodyfont=9.6pt,
style=normal,after={\blank[3pt]}]
\starttext

This is
\footnote{abcde.} a test
\footnote{ABCDE.} line with
\footnote{GHIJK.} footnotes.
\footnote{ghijk.}

\stoptext

I am finding that adjusting “before” and “after” affects the placement of
notes on a given page as a block, but leaves the spacing between the notes
on the list unchanged. So, is there a way to adjust the vertical spacing *
between* notes in MKII?

Alan

On Sun, Jun 3, 2012 at 4:26 AM, Wolfgang Schuster <
schuster.wolfgang@googlemail.com> wrote:

>
> Am 03.06.2012 um 01:17 schrieb Pablo Rodríguez:
>
> >> Add \setupnotation[footnote][display=no] and the example will work.
> >
> > Many thanks for your reply, Wolfgang.
> >
> > If I didn't get your explanation wrong, this example should work:
> >
> > \setupnote[footnote][inbetween=\blank]
> > \setupnotation[footnote][display=no]
> > \starttext
> > \dorecurse{5}{foot\footnote{note}}
> > \stoptext
> >
> > I'm afraid it doesn't. What is wrong here?
>
> You foot now “paragraph=yes”.
>
> \setupnote    [footnote][paragraph=yes]
> \setupnotation[footnote][display=no,alternative=serried]
>
> \starttext \showframe
> \dorecurse{5}{foot\footnote{note} }
> \stoptext
>
> >>>> The alternative you are looking for might be to locally set a
> >>>> different parskip for the footnote inserts:
> >>>
> >>> It adds the space also before or after the first or last one (I guess
> >>> this is the way these options should work).
> >>
> >> It’s a bug because in the following example even the space between the
> notes is too big,
> >> it should be 5mm but actually it’s 10mm.
> >>
> >> \setupnotation[footnote][before={\blank[5mm]},after={\blank[5mm]}]
> >
> > Are you sure that this is buggy? If each note should have 5mm before and
> > after it, I think the right space between notes should be 10mm (5mm
> > after the previous note plus 5mm before the next note). Maybe I'm being
> > too simplistic, but I think it's right.
>
> No, that’s wrong. When you have to \blank one after another only the bigger
> value is used and the other one is ignored. In the following example
> the space between the two frames is 2 lines and not 3 lines because
> the smaller value is ignored. It’s possible to add up both value or to
> ignore the previous/next value but in this case you need an additional
> keyword for \blank.
>
> \defineframedtext[test][width=broad,align=middle]
>
> \starttext \showgrid
>
> \starttest[before={\blank[line]},after={\blank[2*line]}]
> One
> \stoptest
>
> \starttest[before={\blank[line]},after={\blank[2*line]}]
> One
> \stoptest
>
> \blank[4*line]
>
> \starttest[before={\blank[2*line]},after={\blank[line]}]
> One
> \stoptest
>
> \starttest[before={\blank[2*line]},after={\blank[line]}]
> One
> \stoptest
>
> \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
>
> ___________________________________________________________________________________
>

[-- Attachment #1.2: Type: text/html, Size: 5036 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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] 13+ messages in thread

* Re: space between footnotes
  2012-06-03 13:26               ` Alan Bowen
@ 2012-06-03 13:54                 ` Wolfgang Schuster
  2012-06-03 15:52                   ` Alan Bowen
  0 siblings, 1 reply; 13+ messages in thread
From: Wolfgang Schuster @ 2012-06-03 13:54 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 921 bytes --]


Am 03.06.2012 um 15:26 schrieb Alan Bowen:

> I have been following this with some interest, since I am having a similar problem with the vertical spacing between notes in MKII.
> 
> In
> 
> \setupfootnotes[conversion=numbers, 
> 	way=bytext,location=page,rule=on,bodyfont=9.6pt,
> 	style=normal,after={\blank[3pt]}]
> \starttext 
> 
> This is
> \footnote{abcde.} a test
> \footnote{ABCDE.} line with
> \footnote{GHIJK.} footnotes.
> \footnote{ghijk.}
> 
> \stoptext
> 
> I am finding that adjusting “before” and “after” affects the placement of notes on a given page as a block, but leaves the spacing between the notes on the list unchanged. So, is there a way to adjust the vertical spacing between notes in MKII?

% engine=pdftex

\setupnotedefinition[footnote][before={\blank[5mm]},after={\blank[5mm]}]

\starttext \showframe
\dorecurse{5}{foot\footnote{note} }
\stoptext

Wolfgang


[-- Attachment #1.2: Type: text/html, Size: 1538 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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] 13+ messages in thread

* Re: space between footnotes
  2012-06-03 13:54                 ` Wolfgang Schuster
@ 2012-06-03 15:52                   ` Alan Bowen
  0 siblings, 0 replies; 13+ messages in thread
From: Alan Bowen @ 2012-06-03 15:52 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1627 bytes --]

Perfect, Wolfgang. Many thanks again!

Alan


On Sun, Jun 3, 2012 at 9:54 AM, Wolfgang Schuster <
schuster.wolfgang@googlemail.com> wrote:

>
> Am 03.06.2012 um 15:26 schrieb Alan Bowen:
>
> I have been following this with some interest, since I am having a similar
> problem with the vertical spacing between notes in MKII.
>
> In
>
> \setupfootnotes[conversion=numbers,
> way=bytext,location=page,rule=on,bodyfont=9.6pt,
>  style=normal,after={\blank[3pt]}]
> \starttext
>
> This is
> \footnote{abcde.} a test
> \footnote{ABCDE.} line with
> \footnote{GHIJK.} footnotes.
> \footnote{ghijk.}
>
> \stoptext
>
> I am finding that adjusting “before” and “after” affects the placement of
> notes on a given page as a block, but leaves the spacing between the notes
> on the list unchanged. So, is there a way to adjust the vertical spacing *
> between* notes in MKII?
>
>
> % engine=pdftex
>
> \setupnotedefinition[footnote][before={\blank[5mm]},after={\blank[5mm]}]
>
> \starttext \showframe
> \dorecurse{5}{foot\footnote{note} }
> \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
>
> ___________________________________________________________________________________
>

[-- Attachment #1.2: Type: text/html, Size: 2780 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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] 13+ messages in thread

end of thread, other threads:[~2012-06-03 15:52 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-01 19:51 space between footnotes Pablo Rodríguez
2012-06-02  7:27 ` Philipp Gesang
2012-06-02 13:25   ` Pablo Rodríguez
2012-06-02 13:38     ` Wolfgang Schuster
2012-06-02 14:02       ` Pablo Rodríguez
2012-06-02 13:42     ` Philipp Gesang
2012-06-02 14:17       ` Pablo Rodríguez
2012-06-02 15:03         ` Wolfgang Schuster
2012-06-02 23:17           ` Pablo Rodríguez
2012-06-03  8:26             ` Wolfgang Schuster
2012-06-03 13:26               ` Alan Bowen
2012-06-03 13:54                 ` Wolfgang Schuster
2012-06-03 15:52                   ` Alan Bowen

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