ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Metapost: point along path and metaobj
@ 2006-06-19  2:45 Aditya Mahajan
  2006-06-19 14:03 ` Taco Hoekwater
  0 siblings, 1 reply; 27+ messages in thread
From: Aditya Mahajan @ 2006-06-19  2:45 UTC (permalink / raw)


Hi,

  Something goes wrong while using metaobj and point something along 
somepath. I do not know if point ... along... is a mp core command or 
something introduced by metafun. Is this metafun's fault, metaobj's 
fault or simply a metapost issue (and thus I should ask on the 
metapost list).

\setupcolors
   [state=start]

\startMPinclusions
   input metaobj;
\stopMPinclusions
% Everything works fine if I comment metaobj.


\starttext
\startMPpage
   path p ; p := (0,0)--(1cm,0) ;
   draw p
     withpen pencircle scaled 2bp
     withcolor 0.8white;

   draw (point .25 along p)--(point .75 along p)
     withpen pencircle scaled 2bp
     withcolor red ;
\stopMPpage
\stoptext

gives

! Missing argument to arctime.
<to be read again>
                    of
along->(arctime((EXPR0)*(arclength(EXPR1)))of
                                              (EXPR1))of(EXPR1)
<to be read again>
                    )
l.295 draw (point .25 along p)
                               --(point .75 along p)

Aditya

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

* Re: Metapost: point along path and metaobj
  2006-06-19  2:45 Metapost: point along path and metaobj Aditya Mahajan
@ 2006-06-19 14:03 ` Taco Hoekwater
  2006-06-19 15:46   ` PsTRICKS in Context batela
  0 siblings, 1 reply; 27+ messages in thread
From: Taco Hoekwater @ 2006-06-19 14:03 UTC (permalink / raw)


Aditya Mahajan wrote:
> Hi,
> 
>   Something goes wrong while using metaobj and point something along 
> somepath. I do not know if point ... along... is a mp core command or 
> something introduced by metafun. Is this metafun's fault, metaobj's 
> fault or simply a metapost issue (and thus I should ask on the 

It is Metaobj's fault, it redefines (and therefore blocks access to)
the primitive command arctime. So I guess you should complain to
Denis Roegel (at the very least he should save the primitive arctime
under a different name). A workaround (I think) is this:

   input metaobj;
   primarydef pct along pat =
     arctime (pct,pat) of pat
   enddef ;

Taco

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

* PsTRICKS in Context
  2006-06-19 14:03 ` Taco Hoekwater
@ 2006-06-19 15:46   ` batela
  2006-06-19 15:52     ` Hans Hagen
  0 siblings, 1 reply; 27+ messages in thread
From: batela @ 2006-06-19 15:46 UTC (permalink / raw)


To all,

I am the author of a physics booklet written in LATEX+PsTRICKS.
Now,  my I intend  is to make one improved version in Context, but I 
have many
schems with  PSTRICKS commands. Did you know  a easy way  to make the 
migration?

Thanks a lot

Jorge

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

* Re: PsTRICKS in Context
  2006-06-19 15:46   ` PsTRICKS in Context batela
@ 2006-06-19 15:52     ` Hans Hagen
  2006-06-19 16:29       ` batela
  0 siblings, 1 reply; 27+ messages in thread
From: Hans Hagen @ 2006-06-19 15:52 UTC (permalink / raw)


batela wrote:
> To all,
>
> I am the author of a physics booklet written in LATEX+PsTRICKS.
> Now,  my I intend  is to make one improved version in Context, but I 
> have many
> schems with  PSTRICKS commands. Did you know  a easy way  to make the 
> migration?
>   
there is a module, m-pstric.tex


\usemodule[pstrick]

\startPSTRICKS
  \pspicture(0,0)(10,10)
    \dorecurse{10}{\psline(0,0)(\recurselevel,10)}
    \dorecurse{10}{\psline(0,0)(10,\recurselevel)}
  \endpspicture
\stopPSTRICKS

an option is to put the graphics in separate files and/or use checksum trickery as used in m-r (not yet done) 

Hans 
 
-----------------------------------------------------------------
                                          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
-----------------------------------------------------------------

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

* Re: PsTRICKS in Context
  2006-06-19 15:52     ` Hans Hagen
@ 2006-06-19 16:29       ` batela
  0 siblings, 0 replies; 27+ messages in thread
From: batela @ 2006-06-19 16:29 UTC (permalink / raw)



Thanks.

But, in this LATEX_to_Context migration, I need to convert at hand 
several latex commands. For example:

\begin{itemize} to \startitemize

\end{itemize} to \stopitemize


\begin{table}_to_\starttable

and so on.

this is a very hard task.

Perhaps I need to make: perl -ps 's/\begin{itemize}/\startitemize/g'  
*.tex





Em 19/06/2006, às 4:52, Hans Hagen escreveu:

> batela wrote:
>> To all,
>>
>> I am the author of a physics booklet written in LATEX+PsTRICKS.
>> Now,  my I intend  is to make one improved version in Context, but I
>> have many
>> schems with  PSTRICKS commands. Did you know  a easy way  to make the
>> migration?
>>
> there is a module, m-pstric.tex
>
>
> \usemodule[pstrick]
>
> \startPSTRICKS
>   \pspicture(0,0)(10,10)
>     \dorecurse{10}{\psline(0,0)(\recurselevel,10)}
>     \dorecurse{10}{\psline(0,0)(10,\recurselevel)}
>   \endpspicture
> \stopPSTRICKS
>
> an option is to put the graphics in separate files and/or use checksum 
> trickery as used in m-r (not yet done)
>
> Hans
>
> -----------------------------------------------------------------
>                                           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
> -----------------------------------------------------------------
>
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context
>
>
Um Abraço,

Jorge Magalhães

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

* Re: PSTricks in Context
  2014-12-16 12:27             ` luigi scarso
@ 2014-12-31 14:58               ` luigi scarso
  0 siblings, 0 replies; 27+ messages in thread
From: luigi scarso @ 2014-12-31 14:58 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

On Tue, Dec 16, 2014 at 1:27 PM, luigi scarso <luigi.scarso@gmail.com>
wrote:

>
>
> On Mon, Dec 15, 2014 at 9:46 PM, Herbert Voss <Herbert.Voss@fu-berlin.de>
> wrote:
>>
>> Am 15.12.2014 um 14:06 schrieb luigi scarso:
>>
>>
>>> If we have a postscript interpreter, Is it possible to avoid dvi2ps at
>>> all,
>>> using only a context mkiv ?
>>>
>>
>> Yes, that could be possible.
>>
>> It would be interesting (well, at least for me)
> to have a "how to" --- if only for a specific pst module known to work
> with mkiv.
>
> I have done something here
https://foundry.supelec.fr/scm/viewvc.php/trunk/ghostscript/9.15/?root=swiglib

using barcode.ps from
http://bwipp.terryburton.co.uk/

-- 
luigi

[-- Attachment #1.2: Type: text/html, Size: 2036 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] 27+ messages in thread

* Re: PSTricks in Context
  2014-12-18 14:29       ` Mojca Miklavec
@ 2014-12-18 18:53         ` Context NTG
  0 siblings, 0 replies; 27+ messages in thread
From: Context NTG @ 2014-12-18 18:53 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Would you perhaps also have the instructions how to just add PST
to standalone ConTeXt, similar to TikZ is used in standalone ConTeXt. I
want to work with clean ConTeXt without all the overhead of MikTeX or any
other Windows version of TeX. In Standalone ConTeXt I work perfectly easy
with drawings in metapost, TikZ, and graphs with Gnuplot and R. I would
like to add PST to it, but was up to now unsuccessful.

Many Thanks
Jeroen

2014-12-18 14:29 GMT+00:00 Mojca Miklavec <mojca.miklavec.lists@gmail.com>:
>
> On Wed, Dec 17, 2014 at 10:22 PM, Context NTG wrote:
> > I am using on Win7 x 64bit with standalone Context from
> > http://standalone.contextgarden.net/setup/context-setup-win64.zip
> >
> > in \tex\texmf-context\tex\context\base\m-pstricks.mkii line 46 looks as
> > following:
> >     \loadpstrickscolors{colo-rgb.mkii}}
> >
> > The following example does not yield anything
> >
> > \usemodule[pstricks]
> >
> > \starttext
> > \startPSTRICKS
> > \pspicture(0mm,0mm)(30mm,30mm)
> > \psline(0,0)(3,3)
> > \endpspicture
> > \stopPSTRICKS
> > \stoptext
> >
> > Is there anything I am doing wrong?
>
> Probably not, but the ConTeXt Minimals are missing support for
> PSTricks (there are a lot of tools missing, including many binaries).
> If you know how to install it, probably the easiest option to get
> PSTricks running on Windows would be W32TeX.
>
> (I could actually make a rsync-able complete version of W32TeX with a
> relative ease. It contains the latest version of all the tools,
> including ConTeXt. Maybe I should do that as MikTeX no longer supports
> ConTeXt, TeX Live has frozen ConTeXt and binaries, ConTeXt
> Distribution lacks some tools, and W32TeX is actually one of the best
> TeX collections for Windows around; its only drawback is the lack of
> an installer and updater – comparable to what MikTeX offers.)
>
> Mojca
>
> ___________________________________________________________________________________
> 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: 3466 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] 27+ messages in thread

* Re: PSTricks in Context
  2014-12-17 21:22     ` Context NTG
@ 2014-12-18 14:29       ` Mojca Miklavec
  2014-12-18 18:53         ` Context NTG
  0 siblings, 1 reply; 27+ messages in thread
From: Mojca Miklavec @ 2014-12-18 14:29 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Wed, Dec 17, 2014 at 10:22 PM, Context NTG wrote:
> I am using on Win7 x 64bit with standalone Context from
> http://standalone.contextgarden.net/setup/context-setup-win64.zip
>
> in \tex\texmf-context\tex\context\base\m-pstricks.mkii line 46 looks as
> following:
>     \loadpstrickscolors{colo-rgb.mkii}}
>
> The following example does not yield anything
>
> \usemodule[pstricks]
>
> \starttext
> \startPSTRICKS
> \pspicture(0mm,0mm)(30mm,30mm)
> \psline(0,0)(3,3)
> \endpspicture
> \stopPSTRICKS
> \stoptext
>
> Is there anything I am doing wrong?

Probably not, but the ConTeXt Minimals are missing support for
PSTricks (there are a lot of tools missing, including many binaries).
If you know how to install it, probably the easiest option to get
PSTricks running on Windows would be W32TeX.

(I could actually make a rsync-able complete version of W32TeX with a
relative ease. It contains the latest version of all the tools,
including ConTeXt. Maybe I should do that as MikTeX no longer supports
ConTeXt, TeX Live has frozen ConTeXt and binaries, ConTeXt
Distribution lacks some tools, and W32TeX is actually one of the best
TeX collections for Windows around; its only drawback is the lack of
an installer and updater – comparable to what MikTeX offers.)

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

* Re: PSTricks in Context
  2014-12-16 13:07   ` Herbert Voss
@ 2014-12-17 21:22     ` Context NTG
  2014-12-18 14:29       ` Mojca Miklavec
  0 siblings, 1 reply; 27+ messages in thread
From: Context NTG @ 2014-12-17 21:22 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

I am using on Win7 x 64bit with standalone Context from
http://standalone.contextgarden.net/setup/context-setup-win64.zip
<http://standalone.contextgarden.net/setup/context-setup-win64.zip>

in \tex\texmf-context\tex\context\base\m-pstricks.mkii line 46 looks as
following:
    \loadpstrickscolors{colo-rgb.mkii}}

The following example does not yield anything

\usemodule[pstricks]

\starttext

 \startPSTRICKS

\pspicture(0mm,0mm)(30mm,30mm)

\psline(0,0)(3,3)

\endpspicture

\stopPSTRICKS

 \stoptext


Is there anything I am doing wrong?

Jeroen


2014-12-16 13:07 GMT+00:00 Herbert Voss <Herbert.Voss@fu-berlin.de>:
>
> Am 16.12.2014 um 11:35 schrieb luigi scarso:
>
>>
>>
>> On Tue, Dec 16, 2014 at 11:04 AM, Akira Kakuto <kakuto@fuk.kindai.ac.jp
>> <mailto:kakuto@fuk.kindai.ac.jp>> wrote:
>>
>>     Hi Luigi,
>>
>>         The example works if one copies colo-rgb.mkii as colo-rgb.tex in
>>         the same
>>         folder of the example ...
>>
>>
>>     It is OK by changing
>>
>>     line 46 in m-pstricks.mkii:
>>        \loadpstrickscolors{colo-rgb}}
>>     to
>>        \loadpstrickscolors{colo-rgb.__mkii}}
>>
>>     as Herbert said.
>>
>>     In the recent beta's, the change was already done.
>>
>>
>> yes right ---  I have downloaded the "current" into TL,
>> but one can do the same with the zips of "beta" and have the correct
>>   \loadpstrickscolors{colo-rgb.mkii}
>>
>
> I have a script cpCTX2TL which installs the current beta and
> then copies all relevant files into the current TL installation.
>
> Herbert
>
> ____________________________________________________________
> _______________________
> 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: 4106 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] 27+ messages in thread

* Re: PSTricks in Context
  2014-12-16 10:35 ` luigi scarso
@ 2014-12-16 13:07   ` Herbert Voss
  2014-12-17 21:22     ` Context NTG
  0 siblings, 1 reply; 27+ messages in thread
From: Herbert Voss @ 2014-12-16 13:07 UTC (permalink / raw)
  To: ntg-context

Am 16.12.2014 um 11:35 schrieb luigi scarso:
>
>
> On Tue, Dec 16, 2014 at 11:04 AM, Akira Kakuto <kakuto@fuk.kindai.ac.jp
> <mailto:kakuto@fuk.kindai.ac.jp>> wrote:
>
>     Hi Luigi,
>
>         The example works if one copies colo-rgb.mkii as colo-rgb.tex in
>         the same
>         folder of the example ...
>
>
>     It is OK by changing
>
>     line 46 in m-pstricks.mkii:
>        \loadpstrickscolors{colo-rgb}}
>     to
>        \loadpstrickscolors{colo-rgb.__mkii}}
>
>     as Herbert said.
>
>     In the recent beta's, the change was already done.
>
>
> yes right ---  I have downloaded the "current" into TL,
> but one can do the same with the zips of "beta" and have the correct
>   \loadpstrickscolors{colo-rgb.mkii}

I have a script cpCTX2TL which installs the current beta and
then copies all relevant files into the current TL installation.

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

* Re: PSTricks in Context
  2014-12-15 20:46           ` Herbert Voss
@ 2014-12-16 12:27             ` luigi scarso
  2014-12-31 14:58               ` luigi scarso
  0 siblings, 1 reply; 27+ messages in thread
From: luigi scarso @ 2014-12-16 12:27 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

On Mon, Dec 15, 2014 at 9:46 PM, Herbert Voss <Herbert.Voss@fu-berlin.de>
wrote:
>
> Am 15.12.2014 um 14:06 schrieb luigi scarso:
>
>
>> If we have a postscript interpreter, Is it possible to avoid dvi2ps at
>> all,
>> using only a context mkiv ?
>>
>
> Yes, that could be possible.
>
> It would be interesting (well, at least for me)
to have a "how to" --- if only for a specific pst module known to work with
mkiv.

-- 
luigi

[-- Attachment #1.2: Type: text/html, Size: 1011 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] 27+ messages in thread

* Re: PSTricks in Context
  2014-12-16 10:04 Akira Kakuto
@ 2014-12-16 10:35 ` luigi scarso
  2014-12-16 13:07   ` Herbert Voss
  0 siblings, 1 reply; 27+ messages in thread
From: luigi scarso @ 2014-12-16 10:35 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

On Tue, Dec 16, 2014 at 11:04 AM, Akira Kakuto <kakuto@fuk.kindai.ac.jp>
wrote:
>
> Hi Luigi,
>
>  The example works if one copies colo-rgb.mkii as colo-rgb.tex in the same
>> folder of the example ...
>>
>
> It is OK by changing
>
> line 46 in m-pstricks.mkii:
>   \loadpstrickscolors{colo-rgb}}
> to
>   \loadpstrickscolors{colo-rgb.mkii}}
>
> as Herbert said.
>
> In the recent beta's, the change was already done.
>
>
> yes right ---  I have downloaded the "current" into TL,
but one can do the same with the zips of "beta" and have the correct
 \loadpstrickscolors{colo-rgb.mkii}


-- 
luigi

[-- Attachment #1.2: Type: text/html, Size: 1360 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] 27+ messages in thread

* Re: PSTricks in Context
@ 2014-12-16 10:04 Akira Kakuto
  2014-12-16 10:35 ` luigi scarso
  0 siblings, 1 reply; 27+ messages in thread
From: Akira Kakuto @ 2014-12-16 10:04 UTC (permalink / raw)
  To: ntg-context

Hi Luigi,

> The example works if one copies colo-rgb.mkii as colo-rgb.tex in the same
> folder of the example ...

It is OK by changing

line 46 in m-pstricks.mkii:
   \loadpstrickscolors{colo-rgb}}
to
   \loadpstrickscolors{colo-rgb.mkii}}

as Herbert said.

In the recent beta's, the change was already done.

Best,
Akira

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

* Re: PSTricks in Context
  2014-12-15 14:27         ` Mojca Miklavec
  2014-12-15 20:45           ` Herbert Voss
@ 2014-12-16  9:32           ` luigi scarso
  1 sibling, 0 replies; 27+ messages in thread
From: luigi scarso @ 2014-12-16  9:32 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

On Mon, Dec 15, 2014 at 3:27 PM, Mojca Miklavec <
mojca.miklavec.lists@gmail.com> wrote:
>
> On Mon, Dec 15, 2014 at 12:53 PM, Herbert Voss wrote:
> > Am 15.12.2014 um 09:55 schrieb Mojca Miklavec:
> >
> >> Anyway, the version in TeX Live now runs, but creates wrong results
> >> (it prints out "(0,0)(3,3)" instead of drawing the line for example).
> >>
> >> (And I'm not too eager to add support for PSTricks to the
> >> distribution. It's a "can of worms" with zillion of other utilities
> >> that we don't ship. And close-to-zero users.)
> >
> >
> > huh?? The only problem is this line
> >
> > \loadpstrickscolors{colo-rgb}}
> >
> > as mentioned in my mail.
>
> The problem is that this is not the only problem ;)
>
> Or at least that didn't solve all the problems for me.
>
> First of all I had to use Kakuto-san's example, adding something like
>
> \pspicture(0mm,0mm)(30mm,30mm)
> ...
> \endpspicture
>
> in front and at the back (which is extremely ugly to see in ConTeXt).
>
> So the complete minimal example was:
>
> \usemodule[pstricks]
> \starttext
> \startPSTRICKS
> \pspicture(0mm,0mm)(30mm,30mm)
> \psline(0,0)(3,3)
> \endpspicture
> \stopPSTRICKS
> \stoptext
>
> However that still doesn't work with TeX Live 2014 even after fixing
> the issue with mkii in the filename:
>
> ! Missing } inserted.
> <inserted text>
>                 }
> <to be read again>
>                    \endgroup
> \endpspicture ...]\fi \fi \pst@killglue \endgroup
>                                                   \egroup \ifdim \wd
> \pst@hb...
> l.12 \endpspicture
>
> According to Kakuto-san it works with the latest ConTeXt, but I need a
> bit of tweaking to try it out and even if it does users would need to
> install (at least part of) W32TeX, wait for TLContrib to release a
> newer version of ConteXt or tweak themselves in order to try it out.
>
> Mojca
>

I have downloaded
cont-mpd.zip  cont-ppc.zip  cont-tmf.zip
and unzipped them into
texmf-dist of my 2014 TL (and rebuilt the formats and ls-R).
I have tried mtxrun --script update but it fails with
resolvers       | tds | no 'texmf-linux-64' under tree
'/opt/luatex/texlive/2014/tex'
(with a missed newline in my linux box)

The example works if one copies colo-rgb.mkii as colo-rgb.tex in the same
folder of the example
so I guess that we need to find a suitable location for colo-rgb.tex in the
tds
(I dont know if it's safe to add colo-rgb.tex to the base folder of
context, but I suspect it is not)


-- 
luigi

[-- Attachment #1.2: Type: text/html, Size: 3528 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] 27+ messages in thread

* Re: PSTricks in Context
  2014-12-15 21:18             ` Mojca Miklavec
@ 2014-12-15 22:26               ` Aditya Mahajan
  0 siblings, 0 replies; 27+ messages in thread
From: Aditya Mahajan @ 2014-12-15 22:26 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Mon, 15 Dec 2014, Mojca Miklavec wrote:

> On Mon, Dec 15, 2014 at 9:45 PM, Herbert Voss wrote:
>> Am 15.12.2014 um 15:27 schrieb Mojca Miklavec:
>>
>>> First of all I had to use Kakuto-san's example, adding something like
>>>
>>> \pspicture(0mm,0mm)(30mm,30mm)
>>> ...
>>> \endpspicture
>>>
>>> in front and at the back (which is extremely ugly to see in ConTeXt).
>>
>> I see,
>>
>> \tikzpicture
>> ..
>> \endtikzpicture
>>
>> looks nicer ;-)
>
> Well, that also, but in that case it would be \starttikzpicture ...
> \stoptikzpicture. The pairs \tikzpicture ... \endtikzpicture and
> \pspicture ... \endpspicture are plain TeX commands.
>
> I would expect from ConTeXt to support
>
> \startpspicture
> ...
> \stoppspicture
>
> out of the box (if it supported PST properly).

This is a minor issue that can be easily fixed by a few lines of wrapper 
code in m-pstricks.

pstricks relies on other parts of the tex ecosystem (a tex.pro file IIRC, 
and some binaries) that are not shipped with ConTeXt standalone. It will 
be great if MKIV supports pstricks out of the box. There are some very 
nice pstricks packages that are hard (and time consuming) to replicate.

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

* Re: PSTricks in Context
  2014-12-15 20:45           ` Herbert Voss
  2014-12-15 21:18             ` Mojca Miklavec
@ 2014-12-15 21:27             ` Alan BRASLAU
  1 sibling, 0 replies; 27+ messages in thread
From: Alan BRASLAU @ 2014-12-15 21:27 UTC (permalink / raw)
  To: Herbert Voss; +Cc: ntg-context

On Mon, 15 Dec 2014 21:45:52 +0100
Herbert Voss <Herbert.Voss@FU-Berlin.DE> wrote:

> Am 15.12.2014 um 15:27 schrieb Mojca Miklavec:
> 
> > First of all I had to use Kakuto-san's example, adding something
> > like
> >
> > \pspicture(0mm,0mm)(30mm,30mm)
> > ...
> > \endpspicture
> >
> > in front and at the back (which is extremely ugly to see in
> > ConTeXt).  
> 
> I see,
> 
> \tikzpicture
> ..
> \endtikzpicture
> 
> looks nicer ;-)

No, but

\startMPcode
draw origin--(1,1) scaled 30mm ;
\stopMPcode

DOES look nicer ;-)

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

* Re: PSTricks in Context
  2014-12-15 20:45           ` Herbert Voss
@ 2014-12-15 21:18             ` Mojca Miklavec
  2014-12-15 22:26               ` Aditya Mahajan
  2014-12-15 21:27             ` Alan BRASLAU
  1 sibling, 1 reply; 27+ messages in thread
From: Mojca Miklavec @ 2014-12-15 21:18 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Mon, Dec 15, 2014 at 9:45 PM, Herbert Voss wrote:
> Am 15.12.2014 um 15:27 schrieb Mojca Miklavec:
>
>> First of all I had to use Kakuto-san's example, adding something like
>>
>> \pspicture(0mm,0mm)(30mm,30mm)
>> ...
>> \endpspicture
>>
>> in front and at the back (which is extremely ugly to see in ConTeXt).
>
> I see,
>
> \tikzpicture
> ..
> \endtikzpicture
>
> looks nicer ;-)

Well, that also, but in that case it would be \starttikzpicture ...
\stoptikzpicture. The pairs \tikzpicture ... \endtikzpicture and
\pspicture ... \endpspicture are plain TeX commands.

I would expect from ConTeXt to support

\startpspicture
...
\stoppspicture

out of the box (if it supported PST properly).

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

* Re: PSTricks in Context
  2014-12-15 13:06         ` luigi scarso
@ 2014-12-15 20:46           ` Herbert Voss
  2014-12-16 12:27             ` luigi scarso
  0 siblings, 1 reply; 27+ messages in thread
From: Herbert Voss @ 2014-12-15 20:46 UTC (permalink / raw)
  To: ntg-context

Am 15.12.2014 um 14:06 schrieb luigi scarso:

>
> If we have a postscript interpreter, Is it possible to avoid dvi2ps at all,
> using only a context mkiv ?

Yes, that could be possible.

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

* Re: PSTricks in Context
  2014-12-15 14:27         ` Mojca Miklavec
@ 2014-12-15 20:45           ` Herbert Voss
  2014-12-15 21:18             ` Mojca Miklavec
  2014-12-15 21:27             ` Alan BRASLAU
  2014-12-16  9:32           ` luigi scarso
  1 sibling, 2 replies; 27+ messages in thread
From: Herbert Voss @ 2014-12-15 20:45 UTC (permalink / raw)
  To: ntg-context

Am 15.12.2014 um 15:27 schrieb Mojca Miklavec:

> First of all I had to use Kakuto-san's example, adding something like
>
> \pspicture(0mm,0mm)(30mm,30mm)
> ...
> \endpspicture
>
> in front and at the back (which is extremely ugly to see in ConTeXt).

I see,

\tikzpicture
..
\endtikzpicture

looks nicer ;-)

Herbert

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

* Re: PSTricks in Context
  2014-12-15 11:53       ` Herbert Voss
  2014-12-15 13:06         ` luigi scarso
@ 2014-12-15 14:27         ` Mojca Miklavec
  2014-12-15 20:45           ` Herbert Voss
  2014-12-16  9:32           ` luigi scarso
  1 sibling, 2 replies; 27+ messages in thread
From: Mojca Miklavec @ 2014-12-15 14:27 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Mon, Dec 15, 2014 at 12:53 PM, Herbert Voss wrote:
> Am 15.12.2014 um 09:55 schrieb Mojca Miklavec:
>
>> Anyway, the version in TeX Live now runs, but creates wrong results
>> (it prints out "(0,0)(3,3)" instead of drawing the line for example).
>>
>> (And I'm not too eager to add support for PSTricks to the
>> distribution. It's a "can of worms" with zillion of other utilities
>> that we don't ship. And close-to-zero users.)
>
>
> huh?? The only problem is this line
>
> \loadpstrickscolors{colo-rgb}}
>
> as mentioned in my mail.

The problem is that this is not the only problem ;)

Or at least that didn't solve all the problems for me.

First of all I had to use Kakuto-san's example, adding something like

\pspicture(0mm,0mm)(30mm,30mm)
...
\endpspicture

in front and at the back (which is extremely ugly to see in ConTeXt).

So the complete minimal example was:

\usemodule[pstricks]
\starttext
\startPSTRICKS
\pspicture(0mm,0mm)(30mm,30mm)
\psline(0,0)(3,3)
\endpspicture
\stopPSTRICKS
\stoptext

However that still doesn't work with TeX Live 2014 even after fixing
the issue with mkii in the filename:

! Missing } inserted.
<inserted text>
                }
<to be read again>
                   \endgroup
\endpspicture ...]\fi \fi \pst@killglue \endgroup
                                                  \egroup \ifdim \wd \pst@hb...
l.12 \endpspicture

According to Kakuto-san it works with the latest ConTeXt, but I need a
bit of tweaking to try it out and even if it does users would need to
install (at least part of) W32TeX, wait for TLContrib to release a
newer version of ConteXt or tweak themselves in order to try it out.

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

* Re: PSTricks in Context
  2014-12-15 11:53       ` Herbert Voss
@ 2014-12-15 13:06         ` luigi scarso
  2014-12-15 20:46           ` Herbert Voss
  2014-12-15 14:27         ` Mojca Miklavec
  1 sibling, 1 reply; 27+ messages in thread
From: luigi scarso @ 2014-12-15 13:06 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

On Mon, Dec 15, 2014 at 12:53 PM, Herbert Voss <Herbert.Voss@fu-berlin.de>
wrote:
>
> Am 15.12.2014 um 09:55 schrieb Mojca Miklavec:
>
>  Anyway, the version in TeX Live now runs, but creates wrong results
>> (it prints out "(0,0)(3,3)" instead of drawing the line for example).
>>
>> (And I'm not too eager to add support for PSTricks to the
>> distribution. It's a "can of worms" with zillion of other utilities
>> that we don't ship. And close-to-zero users.)
>>
>
> huh?? The only problem is this line
>
> \loadpstrickscolors{colo-rgb}}
>
> as mentioned in my mail.
>
> Herbert
>
> If we have a postscript interpreter, Is it possible to avoid dvi2ps at all,
using only a context mkiv ?

-- 
luigi

[-- Attachment #1.2: Type: text/html, Size: 1502 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] 27+ messages in thread

* Re: PSTricks in Context
  2014-12-15  8:55     ` Mojca Miklavec
@ 2014-12-15 11:53       ` Herbert Voss
  2014-12-15 13:06         ` luigi scarso
  2014-12-15 14:27         ` Mojca Miklavec
  0 siblings, 2 replies; 27+ messages in thread
From: Herbert Voss @ 2014-12-15 11:53 UTC (permalink / raw)
  To: ntg-context

Am 15.12.2014 um 09:55 schrieb Mojca Miklavec:

> Anyway, the version in TeX Live now runs, but creates wrong results
> (it prints out "(0,0)(3,3)" instead of drawing the line for example).
>
> (And I'm not too eager to add support for PSTricks to the
> distribution. It's a "can of worms" with zillion of other utilities
> that we don't ship. And close-to-zero users.)

huh?? The only problem is this line

\loadpstrickscolors{colo-rgb}}

as mentioned in my mail.

Herbert

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

* PSTricks in Context
@ 2014-12-15  9:28 Akira Kakuto
  0 siblings, 0 replies; 27+ messages in thread
From: Akira Kakuto @ 2014-12-15  9:28 UTC (permalink / raw)
  To: ntg-context

> Anyway, the version in TeX Live now runs, but creates wrong results
> (it prints out "(0,0)(3,3)" instead of drawing the line for example).

In the case of
mtx-context     | current version: 2014.12.11 12:02
The following is OK.

%
% context test.tex
%
\usemodule[pstricks]
\starttext
\startmidaligned
\startPSTRICKS
\pspicture(0mm,0mm)(30mm,30mm)
\psline(0,0)(3,3)
\endpspicture
\stopPSTRICKS
\stopmidaligned
\stoptext

Of course there are examples that don't match ConTeXt.

Best,
Akira

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

* Re: PSTricks in Context
  2014-12-15  8:28   ` Herbert Voss
@ 2014-12-15  8:55     ` Mojca Miklavec
  2014-12-15 11:53       ` Herbert Voss
  0 siblings, 1 reply; 27+ messages in thread
From: Mojca Miklavec @ 2014-12-15  8:55 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Mon, Dec 15, 2014 at 9:28 AM, Herbert Voss wrote:
> Am 15.12.2014 um 09:13 schrieb Mojca Miklavec:
>
>> (and maybe then it won't work anyway) and for MkIV it currently fails
>> to work as well:
>>
>> (/usr/local/texlive/2014/texmf-dist/tex/generic/pst-tools/pst-tools.tex
>> `PST-tools' v0.05, 2014/05/12 (hv))  v1.63, 2014/06/24 (tvz,hv))
>> pstricks        : loading colors from colo-rgb
>> ! I can't find file `colo-rgb'.
>> \loadpstrickscolors ...g colors from #1}\input #1
>>                                                    \relax \popmacro
>> \dodefine...
>> l.47 ...s}{using indirect method; enable write18}}
>>
>> (Press Enter to retry, or Control-D to exit)
>
>
> for mkiv read:
>
> http://www.ntg.nl/pipermail/ntg-context/2014/079514.html

Ah. I was running ConTeXt from TL 2014, but I was looking at the
sources from the latest distribution where the problem has already
been fixed. That confused me.

Anyway, the version in TeX Live now runs, but creates wrong results
(it prints out "(0,0)(3,3)" instead of drawing the line for example).

(And I'm not too eager to add support for PSTricks to the
distribution. It's a "can of worms" with zillion of other utilities
that we don't ship. And close-to-zero users.)

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

* Re: PSTricks in Context
  2014-12-15  8:13 ` Mojca Miklavec
@ 2014-12-15  8:28   ` Herbert Voss
  2014-12-15  8:55     ` Mojca Miklavec
  0 siblings, 1 reply; 27+ messages in thread
From: Herbert Voss @ 2014-12-15  8:28 UTC (permalink / raw)
  To: ntg-context

Am 15.12.2014 um 09:13 schrieb Mojca Miklavec:

> (and maybe then it won't work anyway) and for MkIV it currently fails
> to work as well:
>
> (/usr/local/texlive/2014/texmf-dist/tex/generic/pst-tools/pst-tools.tex
> `PST-tools' v0.05, 2014/05/12 (hv))  v1.63, 2014/06/24 (tvz,hv))
> pstricks        : loading colors from colo-rgb
> ! I can't find file `colo-rgb'.
> \loadpstrickscolors ...g colors from #1}\input #1
>                                                    \relax \popmacro \dodefine...
> l.47 ...s}{using indirect method; enable write18}}
>
> (Press Enter to retry, or Control-D to exit)

for mkiv read:

http://www.ntg.nl/pipermail/ntg-context/2014/079514.html

Herbert

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

* Re: PSTricks in Context
  2014-12-14 17:45 PSTricks " context context
@ 2014-12-15  8:13 ` Mojca Miklavec
  2014-12-15  8:28   ` Herbert Voss
  0 siblings, 1 reply; 27+ messages in thread
From: Mojca Miklavec @ 2014-12-15  8:13 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Sun, Dec 14, 2014 at 6:45 PM, context context wrote:
> Could someone tell me how to install and use PSTricks in Context

First of all try to figure out if you could use MetaPost or TikZ
instead. Either of them is a lot more "pdf-friendly".

Unless you still work with MkII and go via dvi->ps->pdf, you need to
compile the PSTricks graphic separately into DVI, then PS, then PDF,
and include the final graphic into the document. While ConTeXt macros
can do that for you, it's still very ugly. Unless you have a very very
very strong reason to use PSTricks, you would be better off with other
solutions.

In any case PSTricks isn't supported in the standalone distribution,
so you need to use TeX Live.


This is (probably) the proper syntax to get it running:

\usemodule[pstricks]
\starttext
\startPSTRICKS
\psline(0,0)(3,3)
\stopPSTRICKS
\stoptext

But for MkII you need to enable unrestricted write18, else you end up with

runsystem(texexec test-texapp.tex --once --batch)...disabled (restricted).
runsystem(dvips test-texapp)...disabled (restricted).
runsystem(ps2pdf test-texapp.ps test-texapp.pdf)...disabled (restricted).

(and maybe then it won't work anyway) and for MkIV it currently fails
to work as well:

(/usr/local/texlive/2014/texmf-dist/tex/generic/pst-tools/pst-tools.tex
`PST-tools' v0.05, 2014/05/12 (hv))  v1.63, 2014/06/24 (tvz,hv))
pstricks        : loading colors from colo-rgb
! I can't find file `colo-rgb'.
\loadpstrickscolors ...g colors from #1}\input #1
                                                  \relax \popmacro \dodefine...
l.47 ...s}{using indirect method; enable write18}}

(Press Enter to retry, or Control-D to exit)

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

* PSTricks in Context
@ 2014-12-14 17:45 context context
  2014-12-15  8:13 ` Mojca Miklavec
  0 siblings, 1 reply; 27+ messages in thread
From: context context @ 2014-12-14 17:45 UTC (permalink / raw)
  To: ntg-context


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

Could someone tell me how to install and use PSTricks in Context

Many Thanks
Jeroen

[-- Attachment #1.2: Type: text/html, Size: 151 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] 27+ messages in thread

end of thread, other threads:[~2014-12-31 14:58 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-06-19  2:45 Metapost: point along path and metaobj Aditya Mahajan
2006-06-19 14:03 ` Taco Hoekwater
2006-06-19 15:46   ` PsTRICKS in Context batela
2006-06-19 15:52     ` Hans Hagen
2006-06-19 16:29       ` batela
2014-12-14 17:45 PSTricks " context context
2014-12-15  8:13 ` Mojca Miklavec
2014-12-15  8:28   ` Herbert Voss
2014-12-15  8:55     ` Mojca Miklavec
2014-12-15 11:53       ` Herbert Voss
2014-12-15 13:06         ` luigi scarso
2014-12-15 20:46           ` Herbert Voss
2014-12-16 12:27             ` luigi scarso
2014-12-31 14:58               ` luigi scarso
2014-12-15 14:27         ` Mojca Miklavec
2014-12-15 20:45           ` Herbert Voss
2014-12-15 21:18             ` Mojca Miklavec
2014-12-15 22:26               ` Aditya Mahajan
2014-12-15 21:27             ` Alan BRASLAU
2014-12-16  9:32           ` luigi scarso
2014-12-15  9:28 Akira Kakuto
2014-12-16 10:04 Akira Kakuto
2014-12-16 10:35 ` luigi scarso
2014-12-16 13:07   ` Herbert Voss
2014-12-17 21:22     ` Context NTG
2014-12-18 14:29       ` Mojca Miklavec
2014-12-18 18:53         ` Context NTG

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