Re: [NTG-context] uninitialized value

2005-02-03 Thread Taco Hoekwater
K. David Prince wrote:
What am I missing?
Dave
Your system is fine, so no worries. Those warning lines are annoying
but harmless. They'll be fixed in the next release, but in the mean
time, you can change lines 344 and 348 of texexec.pl yourself, if you
dare:
$ diff texexec.pl.old texexec.pl
344c344
 if ($ENV{openin_any} eq 'p') {
---
 if (defined $ENV{openin_any}  $ENV{openin_any} eq 'p') {
348c348,349
 if (($ENV{shell_escape} eq 'f') || ($ENV{SHELL_ESCAPE} eq 'f')) {
---
 if ((defined $ENV{shell_escape}  $ENV{shell_escape} eq 'f') ||
 (defined $ENV{SHELL_ESCAPE}  $ENV{SHELL_ESCAPE} eq 'f')) {
Greetings, Taco
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] ConTeXt and TeX output Macro

2005-02-03 Thread Tom Browder
Can one redefine the TeX output macro as one can within TeX?

If so, how?

Thanks.

A wannabe ConTeXt user.

Tom Browder

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] ConTeXt and TeX output Macro

2005-02-03 Thread Hans Hagen
Tom Browder wrote:
Can one redefine the TeX output macro as one can within TeX?
If so, how?
You mean installing another output routine?
In principle one can define his/her own otr (with fallback on an existing one); 
see page-one.tex, page-mul.tex, page-set.tex for details.

It also depends on what you want to do.  There are quite some hooks into the otr 
 already, so what do you hav ein mind?

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


[NTG-context] Re: texshow-web

2005-02-03 Thread Patrick Gundlach
Hello Vit,

 I added one third (only one third but most important one since
 analogy;-) of \setuplayout command to tewshow-web. 

Thank you for the start.

Currently (as you have seen), the text fields take only plain text. If
you would like it, I could make wiki links active, like
[wiki:Main_Page]. This should be pretty easy. The next step could be
to use one of the ruby's wiki-markup parsers, but they are
incompatible with the contextgarden wiki syntax. So (in the long
term), I would have to create my own interpreter. This would take me
some time. Should I start and make the [...] link active?

Patrick
-- 
ConTeXt wiki: http://contextgarden.net
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: texshow-web

2005-02-03 Thread Vit Zyka
Patrick Gundlach wrote:
I added one third (only one third but most important one since
analogy;-) of \setuplayout command to tewshow-web. 
Currently (as you have seen), the text fields take only plain text. If
you would like it, I could make wiki links active, like
[wiki:Main_Page].
OK, Patrick, link is a sufficient solution. Thank you. So I change the 
content
http://texshow.contextgarden.net/ts.rb?lang=enwhat=descif=encmd=setuplayout

Can you check if the link syntax is correct?
VZ
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


RE: [NTG-context] ConTeXt and TeX output Macro

2005-02-03 Thread Tom Browder
 -Original Message-
 From: [EMAIL PROTECTED] 
 It also depends on what you want to do.  There are quite some 
 hooks into the otr
   already, so what do you hav ein mind?

Thanks for the reply, Hans.

Here is my situation:

Every part of my document has to have a security classification (U, C, or S,
the highest).  The highest classification of a part on a page determines
what goes in the page header and footer.  If a paragraph splits so part is
on the next page, its classification needs to be considered in the
header/footer determination for the next page.

So I need to know if:

1.  There is a fragment of a previous marked section at the top of a page.
If so, what is its classification (this may be done with the counters
described below).

2.  Determine the highest classification on the page.

3.  Produce the heading/footer accordingly.

My idea (from secret.sty) is to define a marking command for each part which
will modify one of a set of four (or six depending on how (1) is
implemented) counters depending on the mark's value (classification).

The output command will determine the approriate header/footer from
inspecting the counters, then reset the counters for the next page.

ANother quesion, if ConTeXt can do this, should I install the whole package
or just the minimal one (I run teTeX under Fedora Linux).

Tom

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] Re: texshow-web

2005-02-03 Thread Patrick Gundlach
Hello Vit,

 OK, Patrick, link is a sufficient solution. Thank you. So I change the
 content
 http://texshow.contextgarden.net/ts.rb?lang=enwhat=descif=encmd=setuplayout

 Can you check if the link syntax is correct?

It looks good. Seems to work OK.

Patrick
(and thanks again for your contribution)

-- 
ConTeXt wiki: http://contextgarden.net
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: texshow-web

2005-02-03 Thread Hans Hagen
Patrick Gundlach wrote:
Currently (as you have seen), the text fields take only plain text. If
you would like it, I could make wiki links active, like
[wiki:Main_Page]. This should be pretty easy. The next step could be
to use one of the ruby's wiki-markup parsers, but they are
incompatible with the contextgarden wiki syntax. So (in the long
term), I would have to create my own interpreter. This would take me
some time. Should I start and make the [...] link active?
how about simple xml
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


[NTG-context] Re: texshow-web

2005-02-03 Thread Patrick Gundlach
Hello Hans,

 how about simple xml

to typeset the examples within ConTeXt?

Patrick
(then I really have to look into xslt again)

-- 
ConTeXt wiki: http://contextgarden.net
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: texshow-web

2005-02-03 Thread Hans Hagen
Patrick Gundlach wrote:
Hello Hans,

how about simple xml

to typeset the examples within ConTeXt?
no, to wrap them into
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


[NTG-context] alpha release / latin modern

2005-02-03 Thread Hans Hagen
Hi,
I posted an alpha release. Main differences:
- some efficiency changes in language parts
  needed for || extension
- latin modern fonts instead of cmr/plr/csr/aer/vnr:
  fetch the cont-lmt.zip file if needed
- david antos' wish, test for this:
  \unprotected \setuplanguage
[cz]
[\c!compoundhyphen=-,
 \c!leftcompoundhyphen=-,
 \c!rightcompoundhyphen=-]
  % \protect
  \starttext
  \def\test{||test|| \dorecurse{100}{test||}test}
  \en  \test \endgraf
  \nl  \test \endgraf
  \de  \test \endgraf
  \deo \test \endgraf
  \cz  \test \endgraf
  \stoptext
  cz setting not yet in language files, test first
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


Re: [NTG-context] alpha release / latin modern

2005-02-03 Thread Idris Samawi Hamid
On Thu, 03 Feb 2005 18:11:29 +0100, Hans Hagen [EMAIL PROTECTED] wrote:
Hi,
I posted an alpha release. Main differences:
snip
- latin modern fonts instead of cmr/plr/csr/aer/vnr:
   fetch the cont-lmt.zip file if needed
Ok, but lm is (as far as I know) still not quite usable for e.g. my 
journal. I sent a list of needs to Jacko quite a while back but i don't 
know if they r being considerd or not. Basically we need a global 
old-style numeral option and to fix/add some accents. I'm ready to work 
with u and Jacko to get this done...

Best
Idris
--
Professor Idris Samawi Hamid
Department of Philosophy
Colorado State University
Fort Collins, CO 80523
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] URW Garamond No8 under LPPL

2005-02-03 Thread Tobias Burnus
Hello,
Walter Schmidt has uploaded to CTAN
| (1) the PostScript font family Garamond No8, which URW 
| has made available for free under the Aladdin Free Public
| License, see http://www.artifex.com/downloads/.
|
| (2) font metrics, macros etc. to use the fonts with LaTeX;
| this is material which I have added; it is released under
| LPPL.

The font presentation can be found at
http://www.urwpp.de/
Search for Garamond.
Garamond No8 consists of regular, medium, italic and medium italic. It 
is an OpenType Level 1 font and contains the character sets West, East, 
Turkish, Baltic and Romanian

CTAN: nonfree/fonts/urw/garamond
e.g. ftp://ftp.dante.de/pub/tex/nonfree/fonts/urw/garamond/
Regards,
Tobias
PS: Information taken from CTAN announce.
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context