ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* End Notes and Minimals
@ 2008-11-25 13:57 Bart C. Wise
  2008-11-25 18:39 ` Bart C. Wise
  0 siblings, 1 reply; 11+ messages in thread
From: Bart C. Wise @ 2008-11-25 13:57 UTC (permalink / raw)
  To: Context Mailing List

I've tried several things to get end notes working with the Minimals 
distribution (MkIV).  However, nothing seems to work and what worked for MkII 
does not work now.  Is there a new method for getting end notes in MkIV?

Thank,
Bart
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: End Notes and Minimals
  2008-11-25 13:57 End Notes and Minimals Bart C. Wise
@ 2008-11-25 18:39 ` Bart C. Wise
  2008-11-25 18:47   ` Wolfgang Schuster
  0 siblings, 1 reply; 11+ messages in thread
From: Bart C. Wise @ 2008-11-25 18:39 UTC (permalink / raw)
  To: ntg-context

Below are four different ways I've tried to get endnotes to work.  When I 
compile with "texexec" it work fine --- I get endnotes.  However, when I 
compile with "texexec --lua" the footnotes are placed on the page where they 
are referenced.  I would prefer to have the footnote/placefootnotes work so 
that I can easily change the output.  Any ideas?

******* #1
\setupfootnotes[location=none]
\starttext                    
\dorecurse{100}{test \footnote{eee}\endgraf}
\page                                       
\placefootnotes[location=none]              
\stoptext

******* #2
\setupfootnotes[location=none]
\starttext
\dorecurse{100}{test \footnote{eee}\endgraf}
\page
\placefootnotes
\stoptext

******* #3
\setupnote[endnote][location=none]                               
\starttext                                                       
\dorecurse{100}{test \endnote{eee}\endgraf}                      
\page                                                            
\placenotes[endnote]                                             
\stoptext                                                        

******* #4
\starttext
\dorecurse{6}{ \input tufte \endnote{\input knuth\relax} }
\page
\placenotes[endnote]
\stoptext


Help!!
Bart

On Tuesday 25 November 2008 06:57:58 am Bart C. Wise wrote:
> I've tried several things to get end notes working with the Minimals
> distribution (MkIV).  However, nothing seems to work and what worked for
> MkII does not work now.  Is there a new method for getting end notes in
> MkIV?
>
> Thank,
> Bart
> ___________________________________________________________________________
>________ 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  : https://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________
>________

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


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

* Re: End Notes and Minimals
  2008-11-25 18:39 ` Bart C. Wise
@ 2008-11-25 18:47   ` Wolfgang Schuster
  2008-11-26 22:22     ` Bart C. Wise
  0 siblings, 1 reply; 11+ messages in thread
From: Wolfgang Schuster @ 2008-11-25 18:47 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 25.11.2008 um 19:39 schrieb Bart C. Wise:

> Below are four different ways I've tried to get endnotes to work.   
> When I
> compile with "texexec" it work fine --- I get endnotes.  However,  
> when I
> compile with "texexec --lua" the footnotes are placed on the page  
> where they
> are referenced.  I would prefer to have the footnote/placefootnotes  
> work so
> that I can easily change the output.  Any ideas?
>
> ******* #1
> \setupfootnotes[location=none]
> \starttext
> \dorecurse{100}{test \footnote{eee}\endgraf}
> \page
> \placefootnotes[location=none]
> \stoptext
>
> ******* #2
> \setupfootnotes[location=none]
> \starttext
> \dorecurse{100}{test \footnote{eee}\endgraf}
> \page
> \placefootnotes
> \stoptext
>
> ******* #3
> \setupnote[endnote][location=none]
> \starttext
> \dorecurse{100}{test \endnote{eee}\endgraf}
> \page
> \placenotes[endnote]
> \stoptext
>
> ******* #4
> \starttext
> \dorecurse{6}{ \input tufte \endnote{\input knuth\relax} }
> \page
> \placenotes[endnote]
> \stoptext

It's a bug in the \expdoifcommonelse macro used in MkIV,
it evaluates always the true value and you get footnotes.

Here is a example for Hans:

\starttext

\doifcommonelse{text,page}{none}
   {true}
   {false}

\expdoifcommonelse{text,page}{none}
   {true}
   {false}

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


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

* Re: End Notes and Minimals
  2008-11-25 18:47   ` Wolfgang Schuster
@ 2008-11-26 22:22     ` Bart C. Wise
  2008-11-27  9:40       ` Taco Hoekwater
  0 siblings, 1 reply; 11+ messages in thread
From: Bart C. Wise @ 2008-11-26 22:22 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hans,

What's the chances on getting this fixed?  Or is there a stable branch 
somewhere that I can grab?

Thanks!
Bart

On Tuesday 25 November 2008 11:47:38 am Wolfgang Schuster wrote:
> Am 25.11.2008 um 19:39 schrieb Bart C. Wise:
> > Below are four different ways I've tried to get endnotes to work.
> > When I
> > compile with "texexec" it work fine --- I get endnotes.  However,
> > when I
> > compile with "texexec --lua" the footnotes are placed on the page
> > where they
> > are referenced.  I would prefer to have the footnote/placefootnotes
> > work so
> > that I can easily change the output.  Any ideas?
> >
> > ******* #1
> > \setupfootnotes[location=none]
> > \starttext
> > \dorecurse{100}{test \footnote{eee}\endgraf}
> > \page
> > \placefootnotes[location=none]
> > \stoptext
> >
> > ******* #2
> > \setupfootnotes[location=none]
> > \starttext
> > \dorecurse{100}{test \footnote{eee}\endgraf}
> > \page
> > \placefootnotes
> > \stoptext
> >
> > ******* #3
> > \setupnote[endnote][location=none]
> > \starttext
> > \dorecurse{100}{test \endnote{eee}\endgraf}
> > \page
> > \placenotes[endnote]
> > \stoptext
> >
> > ******* #4
> > \starttext
> > \dorecurse{6}{ \input tufte \endnote{\input knuth\relax} }
> > \page
> > \placenotes[endnote]
> > \stoptext
>
> It's a bug in the \expdoifcommonelse macro used in MkIV,
> it evaluates always the true value and you get footnotes.
>
> Here is a example for Hans:
>
> \starttext
>
> \doifcommonelse{text,page}{none}
>    {true}
>    {false}
>
> \expdoifcommonelse{text,page}{none}
>    {true}
>    {false}
>
> \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  : https://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________
>________

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


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

* Re: End Notes and Minimals
  2008-11-26 22:22     ` Bart C. Wise
@ 2008-11-27  9:40       ` Taco Hoekwater
  2008-11-27 10:17         ` Hans Hagen
  0 siblings, 1 reply; 11+ messages in thread
From: Taco Hoekwater @ 2008-11-27  9:40 UTC (permalink / raw)
  To: mailing list for ConTeXt users



Bart C. Wise wrote:
> Hans,
> 
> What's the chances on getting this fixed?  

This is the bug:

--- syst-lua.lua.orig   2008-11-27 10:39:58.396303891 +0100
+++ syst-lua.lua        2008-11-27 10:40:02.063303374 +0100
@@ -46,8 +46,8 @@
 function commands.doifcommonelse(a,b)
     local ha = h[a]
     local hb = h[b]
-    if not ha then ha = s:match(a) h[a] = ha end
-    if not hb then hb = s:match(b) h[b] = hb end
+    if not ha then ha = {s:match(a)} h[a] = ha end
+    if not hb then hb = {s:match(b)} h[b] = hb end
     for i=1,#ha do
         for j=1,#hb do
             if ha[i] == hb[i] then

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


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

* Re: End Notes and Minimals
  2008-11-27  9:40       ` Taco Hoekwater
@ 2008-11-27 10:17         ` Hans Hagen
  2008-11-27 19:44           ` Bart C. Wise
  0 siblings, 1 reply; 11+ messages in thread
From: Hans Hagen @ 2008-11-27 10:17 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Taco Hoekwater wrote:
> 
> Bart C. Wise wrote:
>> Hans,
>>
>> What's the chances on getting this fixed?  
> 
> This is the bug:
> 
> --- syst-lua.lua.orig   2008-11-27 10:39:58.396303891 +0100
> +++ syst-lua.lua        2008-11-27 10:40:02.063303374 +0100
> @@ -46,8 +46,8 @@
>  function commands.doifcommonelse(a,b)
>      local ha = h[a]
>      local hb = h[b]
> -    if not ha then ha = s:match(a) h[a] = ha end
> -    if not hb then hb = s:match(b) h[b] = hb end
> +    if not ha then ha = {s:match(a)} h[a] = ha end
> +    if not hb then hb = {s:match(b)} h[b] = hb end
>      for i=1,#ha do
>          for j=1,#hb do
>              if ha[i] == hb[i] then
                               ^
                         also wrong

sorry for not testing this better


local s = lpeg.Ct(lpeg.splitat(","))
local h = { }

function commands.doifcommonelse(a,b)
     local ha = h[a]
     local hb = h[b]
     if not ha then ha = s:match(a) h[a] = ha end
     if not hb then hb = s:match(b) h[b] = hb end
     for i=1,#ha do
         for j=1,#hb do
             if ha[i] == hb[j] then
                 return cs.testcase(true)
             end
         end
     end
     return cs.testcase(false)
end

function commands.doifinsetelse(a,b)
     local hb = h[b]
     if not hb then hb = s:match(b) h[b] = hb end
     for i=1,#hb do
         if a == hb[i] then
             return cs.testcase(true)
         end
     end
     return cs.testcase(false)
end



-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
      tel: 038 477 53 69 | fax: 038 477 53 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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: End Notes and Minimals
  2008-11-27 10:17         ` Hans Hagen
@ 2008-11-27 19:44           ` Bart C. Wise
  2008-11-27 20:04             ` Wolfgang Schuster
  0 siblings, 1 reply; 11+ messages in thread
From: Bart C. Wise @ 2008-11-27 19:44 UTC (permalink / raw)
  To: ntg-context

Hans,

I tried the changes, but now footnotes do not appear at all!

Here's a copy of the code that I used (combining both Hans' and Taco's changes 
-- although I tried several variants).

local s = lpeg.Ct(lpeg.splitat(","))
local h = { }

function commands.doifcommonelse(a,b)
        local ha = h[a]
        local hb = h[b]
        if not ha then ha = {s:match(a)} h[a] = ha end
        if not hb then hb = {s:match(b)} h[b] = hb end
        for i=1,#ha do
                for j=1,#hb do
                        if ha[i] == hb[j] then
                                return cs.testcase(true)
                        end
                end
        end
        return cs.testcase(false)
end

function commands.doifinsetelse(a,b)
        local hb = h[b]
        if not hb then hb = {s:match(b)} h[b] = hb end
        for i=1,#hb do
                if a == hb[i] then
                        return cs.testcase(true)
                end
        end
        return cs.testcase(false)
end

Ideas?

Thanks,
Bart
On Thursday 27 November 2008 03:17, Hans Hagen wrote:
> local s = lpeg.Ct(lpeg.splitat(","))
> local h = { }
>
> function commands.doifcommonelse(a,b)
>      local ha = h[a]
>      local hb = h[b]
>      if not ha then ha = s:match(a) h[a] = ha end
>      if not hb then hb = s:match(b) h[b] = hb end
>      for i=1,#ha do
>          for j=1,#hb do
>              if ha[i] == hb[j] then
>                  return cs.testcase(true)
>              end
>          end
>      end
>      return cs.testcase(false)
> end
>
> function commands.doifinsetelse(a,b)
>      local hb = h[b]
>      if not hb then hb = s:match(b) h[b] = hb end
>      for i=1,#hb do
>          if a == hb[i] then
>              return cs.testcase(true)
>          end
>      end
>      return cs.testcase(false)
> end
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: End Notes and Minimals
  2008-11-27 19:44           ` Bart C. Wise
@ 2008-11-27 20:04             ` Wolfgang Schuster
  2008-11-27 20:43               ` Bart C. Wise
  0 siblings, 1 reply; 11+ messages in thread
From: Wolfgang Schuster @ 2008-11-27 20:04 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 27.11.2008 um 20:44 schrieb Bart C. Wise:

> Hans,
>
> I tried the changes, but now footnotes do not appear at all!
>
> Here's a copy of the code that I used (combining both Hans' and  
> Taco's changes
> -- although I tried several variants).
>
> local s = lpeg.Ct(lpeg.splitat(","))
> local h = { }
>
> function commands.doifcommonelse(a,b)
>        local ha = h[a]
>        local hb = h[b]
>        if not ha then ha = {s:match(a)} h[a] = ha end
>        if not hb then hb = {s:match(b)} h[b] = hb end
>        for i=1,#ha do
>                for j=1,#hb do
>                        if ha[i] == hb[j] then
>                                return cs.testcase(true)
>                        end
>                end
>        end
>        return cs.testcase(false)
> end
>
> function commands.doifinsetelse(a,b)
>        local hb = h[b]
>        if not hb then hb = {s:match(b)} h[b] = hb end
>        for i=1,#hb do
>                if a == hb[i] then
>                        return cs.testcase(true)
>                end
>        end
>        return cs.testcase(false)
> end
>
> Ideas?

You should tell us what you have done, I replaced the old function
in core-job.lua with the new from Hans and I get endnotes with your
test file.

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


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

* Re: End Notes and Minimals
  2008-11-27 20:04             ` Wolfgang Schuster
@ 2008-11-27 20:43               ` Bart C. Wise
  2008-11-27 21:00                 ` Wolfgang Schuster
  0 siblings, 1 reply; 11+ messages in thread
From: Bart C. Wise @ 2008-11-27 20:43 UTC (permalink / raw)
  To: ntg-context

Thanks Wolfgang.

I looked at Taco's diff file and changed the routines in syst-lua.lua.  
However, I followed you're lead and changed core-job.lua and it works!  Yes 
the footnotes come out.

New problem (also happens on MkII), if there are a lot of end notes, instead 
of going to the next page after the first page is filled, they go to the 
bottom of the first page and dissappear off the bottom.  The page count 
appears to be correct, but the notes are the second page.

How to I get the footnotes (end notes) to appear on more than one page.  I'm 
using footnote/placefootnotes combination to product the end notes.

Help!

Bart

On Thursday 27 November 2008 13:04, Wolfgang Schuster wrote:
> Am 27.11.2008 um 20:44 schrieb Bart C. Wise:
> > Hans,
> >
> > I tried the changes, but now footnotes do not appear at all!
> >
> > Here's a copy of the code that I used (combining both Hans' and
> > Taco's changes
> > -- although I tried several variants).
> >
> > local s = lpeg.Ct(lpeg.splitat(","))
> > local h = { }
> >
> > function commands.doifcommonelse(a,b)
> >        local ha = h[a]
> >        local hb = h[b]
> >        if not ha then ha = {s:match(a)} h[a] = ha end
> >        if not hb then hb = {s:match(b)} h[b] = hb end
> >        for i=1,#ha do
> >                for j=1,#hb do
> >                        if ha[i] == hb[j] then
> >                                return cs.testcase(true)
> >                        end
> >                end
> >        end
> >        return cs.testcase(false)
> > end
> >
> > function commands.doifinsetelse(a,b)
> >        local hb = h[b]
> >        if not hb then hb = {s:match(b)} h[b] = hb end
> >        for i=1,#hb do
> >                if a == hb[i] then
> >                        return cs.testcase(true)
> >                end
> >        end
> >        return cs.testcase(false)
> > end
> >
> > Ideas?
>
> You should tell us what you have done, I replaced the old function
> in core-job.lua with the new from Hans and I get endnotes with your
> test file.
>
> 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  : https://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________
>________
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: End Notes and Minimals
  2008-11-27 20:43               ` Bart C. Wise
@ 2008-11-27 21:00                 ` Wolfgang Schuster
  2008-11-27 22:26                   ` Bart C. Wise
  0 siblings, 1 reply; 11+ messages in thread
From: Wolfgang Schuster @ 2008-11-27 21:00 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 27.11.2008 um 21:43 schrieb Bart C. Wise:

> Thanks Wolfgang.
>
> I looked at Taco's diff file and changed the routines in syst-lua.lua.
> However, I followed you're lead and changed core-job.lua and it  
> works!  Yes
> the footnotes come out.
>
> New problem (also happens on MkII), if there are a lot of end notes,  
> instead
> of going to the next page after the first page is filled, they go to  
> the
> bottom of the first page and dissappear off the bottom.  The page  
> count
> appears to be correct, but the notes are the second page.

Do you know if this is font dependent, I had a similiar problem with  
footnotes
and Garamond not so long ago (also MkII and MkIV).

> How to I get the footnotes (end notes) to appear on more than one  
> page.  I'm
> using footnote/placefootnotes combination to product the end notes.
>
> Help!

Example!!!

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


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

* Re: End Notes and Minimals
  2008-11-27 21:00                 ` Wolfgang Schuster
@ 2008-11-27 22:26                   ` Bart C. Wise
  0 siblings, 0 replies; 11+ messages in thread
From: Bart C. Wise @ 2008-11-27 22:26 UTC (permalink / raw)
  To: ntg-context

On Thursday 27 November 2008 14:00, Wolfgang Schuster wrote:
> Am 27.11.2008 um 21:43 schrieb Bart C. Wise:
> > Thanks Wolfgang.
> >
> > I looked at Taco's diff file and changed the routines in syst-lua.lua.
> > However, I followed you're lead and changed core-job.lua and it
> > works!  Yes
> > the footnotes come out.
> >
> > New problem (also happens on MkII), if there are a lot of end notes,
> > instead
> > of going to the next page after the first page is filled, they go to
> > the
> > bottom of the first page and dissappear off the bottom.  The page
> > count
> > appears to be correct, but the notes are the second page.
>
> Do you know if this is font dependent, I had a similiar problem with
> footnotes
> and Garamond not so long ago (also MkII and MkIV).
>
> > How to I get the footnotes (end notes) to appear on more than one
> > page.  I'm
> > using footnote/placefootnotes combination to product the end notes.
> >
> > Help!
>
> Example!!!
>

Yes, I should have given an example.  I tried a test program and it worked 
just fine.  So I'll take my current project and attempt to reduce it down to 
something simple.  It's probably something I'm doing wrong.  I'll start a new 
thread if I can't figure it out.

Thanks to Hans, Taco and Wolfgang for helping with the issue.

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


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

end of thread, other threads:[~2008-11-27 22:26 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-11-25 13:57 End Notes and Minimals Bart C. Wise
2008-11-25 18:39 ` Bart C. Wise
2008-11-25 18:47   ` Wolfgang Schuster
2008-11-26 22:22     ` Bart C. Wise
2008-11-27  9:40       ` Taco Hoekwater
2008-11-27 10:17         ` Hans Hagen
2008-11-27 19:44           ` Bart C. Wise
2008-11-27 20:04             ` Wolfgang Schuster
2008-11-27 20:43               ` Bart C. Wise
2008-11-27 21:00                 ` Wolfgang Schuster
2008-11-27 22:26                   ` Bart C. Wise

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