Re: [NTG-context] Slides and notes

2003-11-03 Thread Fabrice Popineau

 I use the modes mechanism (\startmode, \stopmode and friends) and I am
 lacking imagination as to want more.

Something like :

\startslide

\stopslide

\startnote

\stopnote

together with modes screen and handout that would either generate 
only slides or print them like this :


| --   |
| ||   notes   |
| ||   notes   |
| ||   |
| ||   |
| --   |
|  |
| --   |
| ||   notes   |
| ||   notes   |
| ||   |
| ||   |
| --   |


Fabrice

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Slides and notes

2003-11-03 Thread Hans Hagen
At 13:44 03/11/2003, you wrote:

 I use the modes mechanism (\startmode, \stopmode and friends) and I am
 lacking imagination as to want more.
Something like :

\startslide

\stopslide

\startnote

\stopnote

together with modes screen and handout that would either generate
only slides or print them like this :

| --   |
| ||   notes   |
| ||   notes   |
| ||   |
| ||   |
| --   |
|  |
| --   |
| ||   notes   |
| ||   notes   |
| ||   |
| ||   |
| --   |

you can try the following:

 annotate.tex

% output=pdftex interface=en

% beware, page comments are buffers !

\setupcolors[state=start]

\setupbackgrounds[page][background=color,backgroundcolor=gray]

\setuppapersize[S6][S6]

\starttext

\startbuffer

\input tufte

\startpagecomment
  \input knuth
\stoppagecomment
\page

\input knuth

\startpagecomment
  \input tufte
\stoppagecomment
\page

\input douglas

\startpagecomment
  \input douglas
\stoppagecomment
\page

\input ward

\startpagecomment
  \input ward
\stoppagecomment
\page

\stopbuffer

\setuppagecomment[state=start,location=right]   \getbuffer
\setuppagecomment[state=start,location=bottom]  \getbuffer
\setuppagecomment[state=start,location=left]\getbuffer
\setuppagecomment[state=start,location=top] \getbuffer
\stoptext

% present.tex

\setuppapersize
  [A4][A4] % [A4,landscape][A4,landscape]
\setuplayout
  [header=0pt, footer=1cm,
   backspace=1cm, topspace=1cm,
   width=middle, height=middle]
\setupfootertexts
  [presentation\space---\space
   \currentdate\space---\space
   \pagenumber]
\starttext

  \combinepages[annotate][nx=2,ny=3,frame=on]

\stoptext

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] backgrounds

2003-11-03 Thread Pawel Jackowski na Onet
Hi all!

Could You give me some hint how to setup different backgrounds for even and
odd pages? Lets say I would like to have something like

\setupbackgrounds[footer][rightmargin][background=screen] % for even
pages and
\setupbackgrounds[footer][leftmargin][background=screen]  % for odd
pages


Thanks in advance, Pawel


___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] reset \use[sub]path

2003-11-03 Thread Pawel Jackowski na Onet
Hi all!

Lets consider the following situation. There are 3 catalogs; ./lofo1,
./lofo2, ./lofo3, each of them contains files 'aqq.xml' and 'cow.png' for
example. Filenames are the same, but they may have different content. I need
to include all these files into one PDF document WITHOUT giving absolute
paths in TeX code. I tried something like

\usepath[lofo1]
\processXMLfilegrouped{aqq.xml}
\usepath[lofo2]
\processXMLfilegrouped{aqq.xml}
\usepath[lofo3]
\processXMLfilegrouped{aqq.xml}

but in this example the same file (./lofo1/aqq.xml) will be processed 3
times and that is not what I need. Actually the situation is even more
complicated; I have quite big XML tree with hunderts of files and images,
with dozens of catalogs. I wrote a perl script which change current
directory for each process and run texexec in changed one. And it works OK
since I want to have separate PDF document from each `lofo?' catalog. But
how to make one PDF document in such situation using \use[sub]path texnique?

In other words, how to reset settings from \usepath and \usesubpath
commands? And how to do the same for externalfigures?


Thanks in advance, Pawe/l



___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: interaction with radio buttons

2003-11-03 Thread Johannes Hüsing
Patrick Gundlach [EMAIL PROTECTED] [Sun, Nov 02, 2003 at 11:49:44AM CET]:
[...]
 \setupinteraction[state=start,openaction=]
 \setupinteraction[state=start,openaction=ResetForm] 

Neither one makes a difference.

Greetings


Johannes
-- 
Johannes Hüsing   There is something fascinating about science. One gets
[EMAIL PROTECTED]  such wholesale returns of conjecture from such a 
  trifling investment of fact.Mark Twain
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] reset \use[sub]path

2003-11-03 Thread Hans Hagen
At 20:12 03/11/2003, you wrote:

In other words, how to reset settings from \usepath and \usesubpath
commands? And how to do the same for externalfigures?
\usesubpath[reset]

Hans  

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] reset \use[sub]path

2003-11-03 Thread Pawel Jackowski na Onet
problem: reseting input paths

Hi Hans

At 20:12 03/11/2003, Pawel wrote:

 In other words, how to reset settings from \usepath and \usesubpath
commands? And how to do the same for externalfigures?


From: Hans Hagen [EMAIL PROTECTED]
 \usesubpath[reset]

Thanks a lot but I still can't get it. After inspecting core-job.tex file
and tried
'reset' option. Also without expected results. So what is
wrong in the following code?

\starttext
\usesubpath[lofo1]
\processXMLfilegrouped{aqq.xml}
\usesubpath[reset]
\usesubpath[lofo2]
\processXMLfilegrouped{aqq.xml}
\usesubpath[reset]
\write16{\allinputpaths}
\stoptext

In this example \allinputpaths comma-list written to log looks like this:

lofo1,lofo1/reset,lofo1/lofo2,lofo1/reset/lofo2,lofo1/reset/reset,lofo1/lofo
2/reset,lofo1/reset/lofo2/reset

So 'reset' is treated as a directory name. Why? What am I doing wrong?



Pawe/l





___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context