ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Re: stepper
       [not found] <mailman.216.1265733212.26807.ntg-context@ntg.nl>
@ 2010-02-09 16:36 ` Vyatcheslav Yatskovsky
  2010-02-09 16:41   ` stepper Wolfgang Schuster
  0 siblings, 1 reply; 5+ messages in thread
From: Vyatcheslav Yatskovsky @ 2010-02-09 16:36 UTC (permalink / raw)
  To: ntg-context

> Add \setupinteraction[state=start,click=off] to your file and open the 
> PDF with Adobe Reader.

Thanks, Wolfgang! It works this way.

But I wonder why itemization level is increased every page. Is is 
intended to be so?

Thanks for teaching me usage of steppers.

Vyatcheslav

___________________________________________________________________________________
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: stepper
  2010-02-09 16:36 ` stepper Vyatcheslav Yatskovsky
@ 2010-02-09 16:41   ` Wolfgang Schuster
  0 siblings, 0 replies; 5+ messages in thread
From: Wolfgang Schuster @ 2010-02-09 16:41 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Am 09.02.10 17:36, schrieb Vyatcheslav Yatskovsky:

> But I wonder why itemization level is increased every page. Is is
> intended to be so?

Look at your code:

\StartSteps \startitemize[packed]

\startitemize

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

* Re: stepper
  2010-02-09 15:29 ` stepper Vyatcheslav Yatskovsky
  2010-02-09 15:40   ` stepper Wolfgang Schuster
@ 2010-02-09 15:52   ` Hans Hagen
  1 sibling, 0 replies; 5+ messages in thread
From: Hans Hagen @ 2010-02-09 15:52 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Vyatcheslav Yatskovsky

On 9-2-2010 16:29, Vyatcheslav Yatskovsky wrote:
> Hi Hans,
>
> Trying out of curiosity your script, I cannot get two things:
>
> 1) What is stepper (it is related somehow to presentations, but what is
> it specifically?)

a click and show next piece of text

at http://www.luatex.org/documentation.html you can find examples of its 
usage in presentations

> I have not-so-recent ConTeXt.

it's a rather old mechanism first used (but more extensive) in

http://www.pragma-ade.com/present/talks/fifteen.pdf

and that was mkii time

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
-----------------------------------------------------------------
___________________________________________________________________________________
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: stepper
  2010-02-09 15:29 ` stepper Vyatcheslav Yatskovsky
@ 2010-02-09 15:40   ` Wolfgang Schuster
  2010-02-09 15:52   ` stepper Hans Hagen
  1 sibling, 0 replies; 5+ messages in thread
From: Wolfgang Schuster @ 2010-02-09 15:40 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Am 09.02.10 16:29, schrieb Vyatcheslav Yatskovsky:
> Hi Hans,
>
> Trying out of curiosity your script, I cannot get two things:
>
> 1) What is stepper (it is related somehow to presentations, but what 
> is it specifically?)
>
> 2) The script produces 11 pages with titles, but no "bla-bla" is seen 
> on either  page. Why?
Add \setupinteraction[state=start,click=off] to your file and open the 
PDF with Adobe Reader.

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

* Re: stepper
       [not found] <mailman.212.1265724496.26807.ntg-context@ntg.nl>
@ 2010-02-09 15:29 ` Vyatcheslav Yatskovsky
  2010-02-09 15:40   ` stepper Wolfgang Schuster
  2010-02-09 15:52   ` stepper Hans Hagen
  0 siblings, 2 replies; 5+ messages in thread
From: Vyatcheslav Yatskovsky @ 2010-02-09 15:29 UTC (permalink / raw)
  To: ntg-context

Hi Hans,

Trying out of curiosity your script, I cannot get two things:

1) What is stepper (it is related somehow to presentations, but what is 
it specifically?)

2) The script produces 11 pages with titles, but no "bla-bla" is seen on 
either  page. Why?

\usemodule[pre-60] % use the stepper

\starttext

\title {Whatever}

\dorecurse{10} {

\title{Just a few dummy pages}

\StartSteps \startitemize[packed]

\startitemize

\startitem bla \FlushStep \stopitem

\startitem bla bla \FlushStep \stopitem

\startitem bla bla bla \FlushStep \stopitem

\startitem bla bla bla bla \FlushStep \stopitem

\stopitemize \StopSteps

}

\stoptext


I have not-so-recent ConTeXt.

Regards,
Vyatcheslav

___________________________________________________________________________________
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:[~2010-02-09 16:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <mailman.216.1265733212.26807.ntg-context@ntg.nl>
2010-02-09 16:36 ` stepper Vyatcheslav Yatskovsky
2010-02-09 16:41   ` stepper Wolfgang Schuster
     [not found] <mailman.212.1265724496.26807.ntg-context@ntg.nl>
2010-02-09 15:29 ` stepper Vyatcheslav Yatskovsky
2010-02-09 15:40   ` stepper Wolfgang Schuster
2010-02-09 15:52   ` stepper Hans Hagen

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