[NTG-context] next beta

2013-05-28 Thread Hans Hagen

Hi,

New key A in next beta:

\setupbodyfont[tt]

\starttext

\starttabulate[|l|pA{nothyphenated,flushleft,stretch,verytolerant}|]
\NC tufte \NC \input tufte \NC \NR
\stoptabulate

\stoptext

--

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


[NTG-context] question about the layer.

2013-05-28 Thread Jeong Dal
Dear Wolfgang,

I read your detailed explanation about the difference between overlay and 
layer.

Here is your sample code using layer.

\starttext

\definelayer[test]

\setlayer[test][x=3cm,y=6cm]{ONE}
\setlayer[test][x=8cm,y=2cm]{TWO}
\setlayer[test][x=2cm,y=9cm]{THREE}

\flushlayer[test]

\stoptext

It shows ONE, TWO, and THREE in the same page.

I'd like to show each word one by one when I click, so I tested the following 
code.

\setupinteraction[state=start]
\usemodule[pre-60]
\starttext
\definelayer[test1]
\definelayer[test2]
\definelayer[test3]
\setlayer[test1][x=3cm,y=6cm]{ONE}
\setlayer[test2][x=8cm,y=2cm]{TWO}
\setlayer[test3][x=2cm,y=9cm]{THREE}
\StartSteps
\flushlayer[test1] \FlushStep
\flushlayer[test2] \FlushStep
\flushlayer[test3] \FlushStep
\StopSteps
\stoptext

This code produces 3 page output one word per each page. There is no need to 
click the mouse.
I may misunderstand about the layer.

However, is there a way to show each word one by one in the same page when I 
click.

Best regards,
Thank you.

Dalyoung
___
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
___


Re: [NTG-context] \definehighlight with style=command problem

2013-05-28 Thread Alan Bowen
Thanks, Wolfgang. I missed this module  first time around, sorry to say.

ConTeXt now has some very nice tools for editorial markup.

Alan



On Mon, May 27, 2013 at 4:48 PM, Wolfgang Schuster 
schuster.wolfg...@gmail.com wrote:


 Am 27.05.2013 um 15:36 schrieb Alan Bowen bowenala...@gmail.com:

 I an trying to use \definehighlight to define a macro that will color and
 overstrike selected text.
 Thus far,

 \definehighlight[Delete][color=red,style={\overstrike}]
 \starttext
 test  \Delete{test} test
 \stoptext

 reports

 ! Too many }'s.
 system   tex  error on line 4 in file ...TEST.tex: Too many }'s
 ...

 If I replace “\overstrike” with “bold”, “\Delete” works. “\overstrike”
 works otherwise, so am I trying the impossible here?


 \usemodule[annotation]

 \defineannotation[Delete][color=red,textcommand=\overstrike]

 \starttext
 test  \Delete{test} test
 \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

 ___

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

Re: [NTG-context] question about the layer.

2013-05-28 Thread Wolfgang Schuster

Am 28.05.2013 um 15:08 schrieb Jeong Dal hak...@me.com:

 Dear Wolfgang,
 
 I read your detailed explanation about the difference between overlay and 
 layer.
 
 Here is your sample code using layer.
 
 \starttext
 
 \definelayer[test]
 
 \setlayer[test][x=3cm,y=6cm]{ONE}
 \setlayer[test][x=8cm,y=2cm]{TWO}
 \setlayer[test][x=2cm,y=9cm]{THREE}
 
 \flushlayer[test]
 
 \stoptext
 
 It shows ONE, TWO, and THREE in the same page.
 
 I'd like to show each word one by one when I click, so I tested the following 
 code.
 
 \setupinteraction[state=start]
 \usemodule[pre-60]
 \starttext
 \definelayer[test1]
 \definelayer[test2]
 \definelayer[test3]
 \setlayer[test1][x=3cm,y=6cm]{ONE}
 \setlayer[test2][x=8cm,y=2cm]{TWO}
 \setlayer[test3][x=2cm,y=9cm]{THREE}
 \StartSteps
 \flushlayer[test1] \FlushStep
 \flushlayer[test2] \FlushStep
 \flushlayer[test3] \FlushStep
 \StopSteps
 \stoptext
 
 This code produces 3 page output one word per each page. There is no need to 
 click the mouse.
 I may misunderstand about the layer.
 
 However, is there a way to show each word one by one in the same page when I 
 click.

\setupinteraction[state=start]

\usemodule[pre-60]

\definelayer[test]

\starttext

\StartSteps
\setlayer[test][x=3cm,y=6cm]{ONE}\FlushStep
\setlayer[test][x=8cm,y=2cm]{TWO}\FlushStep
\setlayer[test][x=2cm,y=9cm]{THREE}\FlushStep
\StopSteps

\flushlayer[test]

\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
___


[NTG-context] Problem with hidden text

2013-05-28 Thread Jaroslav Hajtmar

Hello ConTeXist.
I have a problem with hidden text.When I compile minimal example (ala 
ConTeXtgarden example):


\starttext

Visible text: \input tufte

\startproperty[hidden]
 Hidden text: \input tufte
\stopproperty

\stoptext


then I get errormessage:

(C:/context/tex/texmf-context/tex/context/sample/tufte.tex)
! Missing \endcsname inserted.

Problem is in last context standalone and context texlive 2012 too.

Thanx Jaroslav Hajtmar


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