ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* alphabetically ordered notes
@ 2015-04-05 18:32 Pablo Rodriguez
  2015-04-08 17:51 ` Hans Hagen
  0 siblings, 1 reply; 5+ messages in thread
From: Pablo Rodriguez @ 2015-04-05 18:32 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hans,

as you told me to remind you latter, here you have the proposal for
alphabetically ordered footnotes:

    \setuplanguage[en][patterns={en,agr}]
    \setuppapersize[A7]
    \setupbodyfont[dejavu, 12pt]
    \definenote[dict]
    \setupnote[dict][n=2,rule=off, split=strict, inbetween=\hskip1.5em]
    \setupnotation[dict][width=broad, number=no]
    \starttext
    Πρῶτον δεῖ θέσθαι τί ὄνομα\dict{ὄνομα,
    -ατος, τό: noun} καὶ τί ῥῆμα\dict{ῥῆμα, -ατος, τό: verb},
    ἔπειτα τί ἐστιν
    ἀπόφασις\dict{ἀπόφασις, -εως, ἡ: negation}
    καὶ κατάφασις\dict{κατάφασις, εως, ἡ:
    affirmation} καὶ ἀπόφανσις\dict{ἀπόφανσις,
    -εως, ἡ: statement} καὶ λόγος.

    Ἔστι μὲν οὖν τὰ ἐν τῇ φωνῇ\dict{φωνή, -ῆς, ἡ: voice} τῶν ἐν τῇ
    ψυχῇ\dict{ψυχῇ, -ῆς, ἡ: soul} παθημάτων\dict{πάθημα, -ατος, τό:
    affections} σύμβολα\dict{σύμβολον, -ου, τό: symbol}, καὶ τὰ
    γραφόμενα\dict{γραφόμενον: written} τῶν ἐν τῇ φωνῇ.
    \page
    \title{Vocabulary}
    \placenotes[dict]
    \stoptext

BTW, it would be extremely useful to be able to place this kind of notes
on each page and also with a \placenotes command.

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

* Re: alphabetically ordered notes
  2015-04-05 18:32 alphabetically ordered notes Pablo Rodriguez
@ 2015-04-08 17:51 ` Hans Hagen
  2015-04-08 18:36   ` Pablo Rodriguez
  0 siblings, 1 reply; 5+ messages in thread
From: Hans Hagen @ 2015-04-08 17:51 UTC (permalink / raw)
  To: ntg-context

On 4/5/2015 8:32 PM, Pablo Rodriguez wrote:
> Hans,
>
> as you told me to remind you latter, here you have the proposal for
> alphabetically ordered footnotes:
>
>      \setuplanguage[en][patterns={en,agr}]
>      \setuppapersize[A7]
>      \setupbodyfont[dejavu, 12pt]
>      \definenote[dict]
>      \setupnote[dict][n=2,rule=off, split=strict, inbetween=\hskip1.5em]
>      \setupnotation[dict][width=broad, number=no]
>      \starttext
>      Πρῶτον δεῖ θέσθαι τί ὄνομα\dict{ὄνομα,
>      -ατος, τό: noun} καὶ τί ῥῆμα\dict{ῥῆμα, -ατος, τό: verb},
>      ἔπειτα τί ἐστιν
>      ἀπόφασις\dict{ἀπόφασις, -εως, ἡ: negation}
>      καὶ κατάφασις\dict{κατάφασις, εως, ἡ:
>      affirmation} καὶ ἀπόφανσις\dict{ἀπόφανσις,
>      -εως, ἡ: statement} καὶ λόγος.
>
>      Ἔστι μὲν οὖν τὰ ἐν τῇ φωνῇ\dict{φωνή, -ῆς, ἡ: voice} τῶν ἐν τῇ
>      ψυχῇ\dict{ψυχῇ, -ῆς, ἡ: soul} παθημάτων\dict{πάθημα, -ατος, τό:
>      affections} σύμβολα\dict{σύμβολον, -ου, τό: symbol}, καὶ τὰ
>      γραφόμενα\dict{γραφόμενον: written} τῶν ἐν τῇ φωνῇ.
>      \page
>      \title{Vocabulary}
>      \placenotes[dict]
>      \stoptext
>
> BTW, it would be extremely useful to be able to place this kind of notes
> on each page and also with a \placenotes command.

quite tricky due to synchronization issues

> Many thanks for your help,

in next beta:

     \placelist[dict][order=title]

(no language control yet .. no time now)

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
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: alphabetically ordered notes
  2015-04-08 17:51 ` Hans Hagen
@ 2015-04-08 18:36   ` Pablo Rodriguez
  2015-04-08 19:12     ` Hans Hagen
  0 siblings, 1 reply; 5+ messages in thread
From: Pablo Rodriguez @ 2015-04-08 18:36 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 04/08/2015 07:51 PM, Hans Hagen wrote:
> On 4/5/2015 8:32 PM, Pablo Rodriguez wrote:
>> [...]
>> BTW, it would be extremely useful to be able to place this kind of notes
>> on each page and also with a \placenotes command.
> 
> quite tricky due to synchronization issues
> 
>> Many thanks for your help,
> 
> in next beta:
> 
>      \placelist[dict][order=title]
> 
> (no language control yet .. no time now)

Many thanks for this improvement, Hans.

Is there a way to remove page number from the final list?

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

* Re: alphabetically ordered notes
  2015-04-08 18:36   ` Pablo Rodriguez
@ 2015-04-08 19:12     ` Hans Hagen
  2015-04-08 19:35       ` Pablo Rodriguez
  0 siblings, 1 reply; 5+ messages in thread
From: Hans Hagen @ 2015-04-08 19:12 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 4/8/2015 8:36 PM, Pablo Rodriguez wrote:
> On 04/08/2015 07:51 PM, Hans Hagen wrote:
>> On 4/5/2015 8:32 PM, Pablo Rodriguez wrote:
>>> [...]
>>> BTW, it would be extremely useful to be able to place this kind of notes
>>> on each page and also with a \placenotes command.
>>
>> quite tricky due to synchronization issues
>>
>>> Many thanks for your help,
>>
>> in next beta:
>>
>>       \placelist[dict][order=title]
>>
>> (no language control yet .. no time now)
>
> Many thanks for this improvement, Hans.
>
> Is there a way to remove page number from the final list?

it's just a list so you can use all list variants and key/values

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
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: alphabetically ordered notes
  2015-04-08 19:12     ` Hans Hagen
@ 2015-04-08 19:35       ` Pablo Rodriguez
  0 siblings, 0 replies; 5+ messages in thread
From: Pablo Rodriguez @ 2015-04-08 19:35 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 04/08/2015 09:12 PM, Hans Hagen wrote:
> On 4/8/2015 8:36 PM, Pablo Rodriguez wrote:
>> On 04/08/2015 07:51 PM, Hans Hagen wrote:
>>> On 4/5/2015 8:32 PM, Pablo Rodriguez wrote:
>>>> [...]
>>>> BTW, it would be extremely useful to be able to place this kind of notes
>>>> on each page and also with a \placenotes command.
>>>
>>> quite tricky due to synchronization issues
>>>
>>>> Many thanks for your help,
>>>
>>> in next beta:
>>>
>>>       \placelist[dict][order=title]
>>>
>>> (no language control yet .. no time now)
>>
>> Many thanks for this improvement, Hans.
>>
>> Is there a way to remove page number from the final list?
> 
> it's just a list so you can use all list variants and key/values

Many thanks for the tip, Hans.


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

end of thread, other threads:[~2015-04-08 19:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-05 18:32 alphabetically ordered notes Pablo Rodriguez
2015-04-08 17:51 ` Hans Hagen
2015-04-08 18:36   ` Pablo Rodriguez
2015-04-08 19:12     ` Hans Hagen
2015-04-08 19:35       ` Pablo Rodriguez

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