Re: [NTG-context] ConTeXt 2006.06.09 released

2006-06-23 Thread Taco Hoekwater


Idris Samawi Hamid wrote:
 
Hello all,

I am pleased to announce that the new ConTeXt release from Hans Hagen
can be downloaded as of now from the Pragma ADE website or one of its
mirrors.
 
 
 I'm subscribed to the Pragma RSS but did not get this announcement. Are  
 these things in sync?

They are separate: the RSS reports that there is news at the pragma
website and is generated by Hans, the announcements introduce new
releases and are generated by me.

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


Re: [NTG-context] newline with \setupTABLE[bottom=...]

2006-06-23 Thread Hans Hagen
� wrote:
 Hello,
 in accordance to http://context.literatesolutions.com/collector/52
 I got used to write things like:

 \starttext
 \setupTABLE[c][1][style=before,bottom=after]
 \bTABLE
 \bTR\bTD X\eTD\bTD bla\eTD\eTR
 \bTR\bTD X\eTD\bTD bla\eTD\eTR
 \eTABLE
 \stoptext

 This worked fine, but with the latest ConTeXt, the bottom=... introduces a
 newline. Do you have a solution for this issue?
   
first of all, style is rather special, so you'd better not abuse that one to 
often (there is some checking on the meaning done) 

the companion of bottom is top and both are meant for vertical things, normally 
the \start/\stop things ; some commands provide left and right for horizontal 
things which is probably what you're looking for 

top bottom usage: the following sets a narrower text (the origin of this 
thread) 

\bTABLE[top=\startnarrower,bottom=\stopnarrower]
\bTR \bTD something \eTD \eTR
\eTABLE

this is also a nice one: 

\startsetups whatever
whatever initialzations needed
\stopsetups

\bTABLE[setups=whatever]
\bTR \bTD something \eTD \eTR
\eTABLE

the next code implements left/right: 

\unprotect 

\def\bTBLCELL % why not \doinhibitblank
  {\inhibitblank
   \doconvertfont\tbltblstyle\empty
   \everypar{\tbltblleft\delayedbegstrut}}

\def\eTBLCELL
  {\ifhmode
 \delayedendstrut
 \tbltblright
 \par % added 13/4/2006
   \else
 \par
 \ifdim\prevdepth\zeropoint % =-1000pt ?
   \vskip-\strutdp
 \else
   \removebottomthings
 \fi
   \fi}

\setupTABLE
  [\c!left=,
   \c!right=]


\bTABLE[left={(},right={)},top=\startnarrower,bottom=\stopnarrower]
\bTR \bTD something \eTD \eTR
\eTABLE

\stoptext




-
  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] Aleph queries

2006-06-23 Thread Hans Hagen
Duncan Hothersall wrote:

 I agree the above works, but when I use Arabic fonts and content it
 doesn't seem to.
   
still puzzling

things like this (imo) conform that the ability to typeset in multiple 
directions not means that one claim to have a multilingual tex  

the problem is that there's always a mixture between this auto r/l stuff and 
explicit r/l stuff and one never knows (also depends on the otp's it seems) 
what happens: now we can have situations that the input parser reverse things 
that are already reversed and one never knows why/where (since those opt's have 
kind of unpredictable side effects (apart from bugs - i just ran out of mem 
again) 

figure [num1] . [num2] . [num3] 

should come out as 

 [num3] . [num2] . [num1] erugif

depending on when an otp decides that it should stop we get something else In 
any case, the num snippets needs to be otp'd in order to get proper arab, at 
the same time there's this *dir stuff, ...  

(omega was never made for such things, only simple docs with straightforward 
input, not too much macro package stuff involved) 

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] Linux upgrade

2006-06-23 Thread Taco Hoekwater


John R. Culleton wrote:
 
 Let me start all over. Assuming a working TeX installation
 (either tetex or texlive 2005) what incantation must I perform to

I think it is slighty better to start with TeXLive than with
teTeX because it is a bit newer so you do not have to update
as much, but you may prefer to keep your teTeX.

 upgrade to the latest stable Context and what specific zip file
 should I use? 

The wiki is a bit out of date, but there is a complete page on Linux
installations: http://wiki.contextgarden.net/Linux_Installation

After following those instructions, everything should be ok except
for the new ruby script links and texmfstart's warning. For
that, do the following:

   * make sure you have ruby installed. If not, do that first

   * go to the scripts/context/stubs/unix/ directory in your
 freshly unpacked ConTeXt distribution, make sure you
 have write permissions to the TeX binaries directory,
 and run something like the shell script that follows.

 I turned on the interaction of rm and cp, but there are
 NO GUARANTEES!
 My skill in shell programming is pretty awful.



Cheers, Taco


#!/bin/sh

TEXMFBIN=`which texexec`
TEXMFBIN=`dirname $TEXMFBIN`

if [ -f $TEXMFBIN/texmfstart ]; then
rm -i $TEXMFBIN/texmfstart
fi

cp -i ../../ruby/texmfstart.rb $TEXMFBIN/texmfstart

chmod a+x $TEXMFBIN/texmfstart

for a in *; do
 TEST=`which $a`;
 echo $TEST;
 if [ $TEST ] ; then
   rm -i $TEST
 fi;
 chmod a+x $a
 cp -i $a $TEXMFBIN
done;

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


Re: [NTG-context] Aleph queries

2006-06-23 Thread Hans Hagen
Duncan Hothersall wrote:
 Idris wrote:

   
 I doubt it, but something along these lines should do it:

 ==
 % tex=aleph output=dvipdfmx
 \pagedir TRT
 \bodydir TRT
 \pardir  TRT
 \textdir TRT
 \hoffset=0pt % bug

 \starttext

 \chapter{Cow}

 \section{Dutch Cow}

 \placefigure
 [middle]
 [fig:cow]
 {This is an example of a cow.}
 {\externalfigure[cow][width=1.5in]}

 \section{Another Dutch Cow}

 \placefigure
 [middle]
 [fig:cow]
 {This is an example of a cow.}
 {\externalfigure[cow][width=1.5in]}

 \stoptext

 ==

 Hmm, seems to work here; maybe Duncan did not use \bodydir TRT?
 
I tend to think that we should start with 

\def\ArabicUTF
  {\ArabicDirGlobal
   \usefiltersequence[UTFArabic]%
%\reversesectionnumberstrue
   \switchtobodyfont[omarb]%
   \ArabicDirGlobal}

\ArabicUTF

\setuplabeltext[figure=استخلاØ~]

so, no reversing; the question is, why isn't this piece reflected in arab while 
ok in reflected english 

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] reference formatting

2006-06-23 Thread Hans van der Meer

On Jun 22, 2006, at 23:13, Aditya Mahajan wrote:



 On Thu, 22 Jun 2006, Hans van der Meer wrote:

 With \definereferenceformat[pin][left=(,right=)] it is possible to  
 typeset
 references with
  \pin[ref] and get (ref)

 I have two questions in this respect:

 1. is it possible to change the general setup in the same way,
  e.g. let \in[ref] do the same as \pin[ref] here.
  The left and right are not in setupreferencing.


I finally came up with this, a bit of a kludge I admit:
\let\originalin=\in
\definereferenceformat[parenthesizedin][left=(,right=),command= 
\originalin]
\let\in=\parenthesizedin


 Don't know about this.

 2. some strange interchange takes place when using \pin{A}{B}[ref].
  Instead of the expected A (ref) B one gets A (refB);
  it therefore seems the right parenthesis from the setup comes too
 late in play.

 As I understand referencing, this is the expected behaviour. I think
 that \in{..}{..}[...] was for things like

 As seen in \in{Figure}{a}[fig]...

 that is when you want to refer to a subfigure (or a subformula).  
 That is
 why there is no space between the number and the content in the second
 {..}


I has not understood it that way, but thought it was meant to enclose  
the whole reference. I see the point now.

Hans van der Meer



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


Re: [NTG-context] Aleph queries

2006-06-23 Thread Taco Hoekwater
Hi,

Hans Hagen wrote:
 
 figure [num1] . [num2] . [num3] 
 
 should come out as 
 
  [num3] . [num2] . [num1] erugif

We discovered that the arabic contextual analyzation OTP assumes
that any sequence of [0-9.+-]+ is a single number and should be
typeset in TLT mode.

For figure numbers and version numbers etcetera this assumption
is wrong (they are multiple numbers concatenated together).

A trick (?) is to change the separator such that the number
parsing in the otp see separate numbers as well:

   \setupcaptions[separator={{.}}]


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


Re: [NTG-context] Linux upgrade

2006-06-23 Thread luigi scarso
I use texlive under linux .

1) I have an installation from texlive with context under /usr3/TeX
2) I have  this script
PATH=/usr3/TeX/bin/i386-linux:$PATH
So when I want use this installation, I open a shell
and write
$export PATH=/usr3/TeX/bin/i386-linux:$PATH
Now /usr3/TeX become 'standard tex' in this shell only.
3) when I have a new pdfetex, i compile it and install binary and pool
where appropriate;
after that
3a) $mktexlsr
3b) ) I remade efmt with
  $fmtutil --byfmt pdfetex ; mktexlsr
5) when there are new files from pragma for context,
5a) I download them (*.zip)
5b) I put them under /usr3/TeX/texmf-dist
5c) I unzip them all
5d) $mktexlsr
5e) I made some modification cont-sys.ori - cont-sys.tex and so on
5f)  $fmtutil --byfmt cont-en ; mktexlsr

Seem to be all ok .
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] bib module beta test

2006-06-23 Thread Taco Hoekwater


Aditya Mahajan wrote:
 On Thu, 22 Jun 2006, Taco Hoekwater wrote:
 
 Something is wrong with alternative=num|num-fr. Consider

Thanks for testing. I've uploaded a new version that fixes
this problem as well as the suddenly required

\placepublications[criterium=previous]

(that behaviour is now default)

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


Re: [NTG-context] Aleph queries

2006-06-23 Thread Hans Hagen
Taco Hoekwater wrote:
 Hi,

 Hans Hagen wrote:
   
 figure [num1] . [num2] . [num3] 

 should come out as 

  [num3] . [num2] . [num1] erugif
 

 We discovered that the arabic contextual analyzation OTP assumes
 that any sequence of [0-9.+-]+ is a single number and should be
 typeset in TLT mode.
   
just curious: does this make sense? why is this?
 For figure numbers and version numbers etcetera this assumption
 is wrong (they are multiple numbers concatenated together).

 A trick (?) is to change the separator such that the number
 parsing in the otp see separate numbers as well:

\setupcaptions[separator={{.}}]
   
or a bit more extensive:

\def\ArabicUTF
  {\ArabicDirGlobal
   \usefiltersequence[UTFArabic]%
   % not needed:   \reversesectionnumberstrue
   \switchtobodyfont[omarb]}

\setupheads   [separator={{.}}]
\setupcaptions[separator={{.}}]

 this still gives problems with refering to a graphic but for that we need more 
hackery 

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] i-Install er and ConTeXt updater

2006-06-23 Thread Otared Kavian
Hi Gerben,

When trying to update ConTeXt with i-Installer, I see this:

Remote Package: Remote is being updated since 2006/06/23 04:02:30

Is it a normal situation?

Thanks in advance: OK
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Aleph queries

2006-06-23 Thread Duncan Hothersall
 A trick (?) is to change the separator such that the number
 parsing in the otp see separate numbers as well:

 \setupcaptions[separator={{.}}]

 \setupheads [separator={{.}}]
 \setupcaptions[separator={{.}}]
 
  this still gives problems with refering to a graphic but for that we need 
 more hackery 

Agreed, but this is a great step forward and explains the behaviour. It
it true that in Arabic the digits making up a number should read from
ltr while separated numbers forming a section or float reference should
read rtl overall.

So we are nearly there, just the cross-references to be dealt with,
thank you all very much for this.

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


Re: [NTG-context] Aleph queries

2006-06-23 Thread Duncan Hothersall
 \setupheads [separator={{.}}]
 \setupcaptions[separator={{.}}]

 this still gives problems with refering to a graphic but for that we
 need more hackery

Also, probably because it uses the same cross-referencing mechanism,
this leaves the section numbers in tables of contents the other way
around. So to match the setupheads, we need also:

\setuplist[section,subsection,...][separator={{.}}]


Unfortunately

\setupreferencing[separator={{.}}]

seems to just put an extra . before the figure number, but not reverse
it, resulting in:

'1.2- erugiF'


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


Re: [NTG-context] Linux upgrade

2006-06-23 Thread John R. Culleton
On Thursday 22 June 2006 09:37 pm, Aditya Mahajan wrote:
 Hi John,
   Others will be able to tell you better on how to upgrade on Linux (I
 myself use windows) but

  standard /usr/share/texmf tree. No joy. I get messages telling me to use
  the texmfstart command instead. This is as I recall a Windows thingie.

 you need texmfstart on linux also. Does everything work fine if you
 use texmfstart?

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

Not yet. I am unsure what texmfstart is supposed to do. It is a
Ruby script. Does it replace texexec or does it manage texexec? 

Anyhow back to the starting line. I have reinstalled the version
of tetex that comes with Slackware 10.2 so at least I am
operational. I have in addition downloaded the iso's for
slackware-current. I tried upgrading just the TeX part of
Slackware but there are too many differences in libraries between
Slack 10.2 and Slack current. 

For my next step I will install Slack-current on a spare
partition. Then I will test Context there and note the version.
If it is fairly recent then I will proceed using that partition.
If not, then I may experiment with the many and various
suggestions for upgrading.  

My thanks to all who replied. I am hanging in there. Someday I
will get the upgrade going, but probably not today. 
-- 
John Culleton
Books with answers to marketing and publishing questions:
http://wexfordpress.com/tex/shortlist.pdf

Book coaches, consultants and packagers:
http://wexfordpress.com/tex/packagers.pdf

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


Re: [NTG-context] reference formatting

2006-06-23 Thread Aditya Mahajan
On Fri, 23 Jun 2006, Hans van der Meer wrote:


 On Jun 22, 2006, at 23:13, Aditya Mahajan wrote:



 On Thu, 22 Jun 2006, Hans van der Meer wrote:

 With \definereferenceformat[pin][left=(,right=)] it is possible to
 typeset
 references with
 \pin[ref] and get (ref)

 I have two questions in this respect:

 1. is it possible to change the general setup in the same way,
 e.g. let \in[ref] do the same as \pin[ref] here.
 The left and right are not in setupreferencing.


 I finally came up with this, a bit of a kludge I admit:
 \let\originalin=\in
 \definereferenceformat[parenthesizedin][left=(,right=),command=
 \originalin]
 \let\in=\parenthesizedin

Be careful with this. There are two places in the source that use \in 
command. You will get parenthesis around them also.

If you do not use those commands (\inline and I do not remember the 
second one, I checked that yesterday), then even

\definereferenceformat[in][left=(,right=)] should work.



 2. some strange interchange takes place when using \pin{A}{B}[ref].
 Instead of the expected A (ref) B one gets A (refB);
 it therefore seems the right parenthesis from the setup comes too
 late in play.

 As I understand referencing, this is the expected behaviour. I think
 that \in{..}{..}[...] was for things like

 As seen in \in{Figure}{a}[fig]...

 that is when you want to refer to a subfigure (or a subformula).
 That is
 why there is no space between the number and the content in the second
 {..}


 I has not understood it that way, but thought it was meant to enclose
 the whole reference. I see the point now.

 Hans van der Meer



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




-- 
Aditya Mahajan, EECS Systems, University of Michigan
http://www.eecs.umich.edu/~adityam || Ph: 7342624008
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Aleph queries

2006-06-23 Thread Idris Samawi Hamid
Hmm, I did not get the parent(s) to this email; was it off-list?

Idris

On Fri, 23 Jun 2006 06:10:57 -0600, Duncan Hothersall [EMAIL PROTECTED] wrote:

 A trick (?) is to change the separator such that the number
 parsing in the otp see separate numbers as well:

 \setupcaptions[separator={{.}}]

 \setupheads [separator={{.}}]
 \setupcaptions[separator={{.}}]

  this still gives problems with refering to a graphic but for that we  
 need more hackery

 Agreed, but this is a great step forward and explains the behaviour. It
 it true that in Arabic the digits making up a number should read from
 ltr while separated numbers forming a section or float reference should
 read rtl overall.

 So we are nearly there, just the cross-references to be dealt with,
 thank you all very much for this.

-- 
Professor Idris Samawi Hamid
Department of Philosophy
Colorado State University
Fort Collins, CO 80523

--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Linux upgrade

2006-06-23 Thread Aditya Mahajan
On Fri, 23 Jun 2006, John R. Culleton wrote:

 On Thursday 22 June 2006 09:37 pm, Aditya Mahajan wrote:
 Hi John,
   Others will be able to tell you better on how to upgrade on Linux (I
 myself use windows) but

 standard /usr/share/texmf tree. No joy. I get messages telling me to use
 the texmfstart command instead. This is as I recall a Windows thingie.

 you need texmfstart on linux also. Does everything work fine if you
 use texmfstart?

 Not yet. I am unsure what texmfstart is supposed to do. It is a
 Ruby script. Does it replace texexec or does it manage texexec?

texmfstart is a ruby script which manages texexec and other context 
script. Basically, instead of calling any script directly, call it 
using texmfstart. So,

texexec filename

becomes

texmfstart texexec filename

texutil

becomes

texmfstart texutil

(though most of the functionality has been replaced by ctxtools) and 
so on. texmfstart makes sure that the script at the right path is 
called and also speeds up things a little when calling different 
utilities. It also provides some useful things like ifchanged and 
iftoughed. There is a texmfstart manual (bit out of date). Simply 
typing texmfstart on the shell lists the available switches.

Aditya


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


[NTG-context] i-Installer and ConTeXt updater

2006-06-23 Thread Otared Kavian
Hi Gerben,

When trying to update ConTeXt with i-Installer, I see this:

Remote Package: Remote is being updated since 2006/06/23 04:02:30

Is it a normal situation?

Thanks in advance: OK
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] bib module beta test

2006-06-23 Thread Aditya Mahajan
On Fri, 23 Jun 2006, Taco Hoekwater wrote:



 Aditya Mahajan wrote:
 On Thu, 22 Jun 2006, Taco Hoekwater wrote:

 Something is wrong with alternative=num|num-fr. Consider

 Thanks for testing. I've uploaded a new version that fixes
 this problem as well as the suddenly required

   \placepublications[criterium=previous]

All my examples work fine with the new release. I have not tested the 
new features yet. However, I observed something strange with bibtex.

Does bibtex only look at the files in the $TEXMFLOCAL tree? 
Specifically, does it only check files in the ls-R inside $TEXMFLOCAL 
tree? Earlier I used to put all the IEEEfull and IEEEabrv bib files in 
texmf-local and bibtex could find them happily. Now, to organize 
things better, I do not touch texmf-local but put all my personal 
files in texmf-project. Bibtex can not seem to find the bib files in 
texmf-project, while texmfstart --locate finds it. So, I am guessing 
that bibtex does not look in ls-R in all the trees in $TEXMF.

Is this expected behaviour, or is something misconfigured on my 
computer.

Aditya

PS: I am using the bibtex that comes with the windows stand alone 
installer of context. This is what bibtex -version says

BibTeX 0.99c (Web2C 7.5.5)
kpathsea version 3.5.5
Copyright (C) 1997-2005 Oren Patashnik.
Kpathsea is copyright (C) 1997-2005 Karl Berry and Olaf Weber.
There is NO warranty.  Redistribution of this software is
covered by the terms of both the BibTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the BibTeX source.
Primary author of BibTeX: Oren Patashnik.
Kpathsea written by Karl Berry and others.

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


Re: [NTG-context] Aleph queries

2006-06-23 Thread Hans Hagen
Idris Samawi Hamid wrote:
 Hmm, I did not get the parent(s) to this email; was it off-list?
   
yes, taco and i skyped a bit -)

anyhow, it looks like we need some low level support for this kind of 
things; playing with that now (not much time today)

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] Linux upgrade

2006-06-23 Thread Peter Münster
On Thu, 22 Jun 2006, John R. Culleton wrote:

 So next I tried linux binaries only. Still no joy.

Hello John,
you could try the tetex-rpm from http://pmrb.free.fr/work/OS/ConTeXt/tetex/
It has the latest ConTeXt (also latest pdfTeX and MetaPost) and a command
updateConTeXt.sh to easily update to the most recent ConTeXt.
Cheers, Peter

-- 
http://pmrb.free.fr/contact/
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Linux upgrade

2006-06-23 Thread Hans Hagen
Aditya Mahajan wrote:

 utilities. It also provides some useful things like ifchanged and 
 iftoughed. There is a texmfstart manual (bit out of date). Simply 
   
the source is updated, but not yet the pdf -)

 

-
  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] newline with \setupTABLE[bottom=...]

2006-06-23 Thread Peter Münster
On Fri, 23 Jun 2006, Hans Hagen wrote:

 \bTABLE[left={(},right={)},top=\startnarrower,bottom=\stopnarrower]
 \bTR \bTD something \eTD \eTR
 \eTABLE

Thank you very much!
If this goes into the distribution, the item
http://context.literatesolutions.com/collector/52 can be considered
resolved.
Cheers, Peter

-- 
http://pmrb.free.fr/contact/
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] arab (omega)

2006-06-23 Thread Hans Hagen
Hi otp lovers,

i managed to get this number stuff running (i.e. bypass the otp messing 
up numbers):

i'm uploading a beta

beware, there is no need to setup separators, and no need to reverse 
numbers!

\def\ArabicUTF
  {\ArabicDirGlobal
   \usefiltersequence[UTFArabic]%
   \switchtobodyfont[omarb]%
   \isolateseparators} % will handle separators

of course you should not expect proper kerning when isolation is used with 
latin 

things like this actually need some advanced control (special otp's for 
difference situations, depending on what one's dealing with, then to be hooked 
into the code at the right place, which is tricky since it may get lost later 
one etc etc) 

still messed up: math display formulas, strange number reversion and swapping 
l/r [since omega has bugs with math i'm not sure what is the reason] 

maybe duncan/idris/taco have an idea 

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] Linux upgrade

2006-06-23 Thread John R. Culleton
On Friday 23 June 2006 12:34 pm, Peter Münster wrote:
 On Thu, 22 Jun 2006, John R. Culleton wrote:
  So next I tried linux binaries only. Still no joy.

 Hello John,
 you could try the tetex-rpm from http://pmrb.free.fr/work/OS/ConTeXt/tetex/
 It has the latest ConTeXt (also latest pdfTeX and MetaPost) and a command
 updateConTeXt.sh to easily update to the most recent ConTeXt.
 Cheers, Peter
Now that is in interesting download. I see the following files
and instructions:

tetex-3.0-3.i586.rpm-1  20-Jun-2006 17:54  66.8M  
[   ] tetex-3.0-3.i586.rpm-2  20-Jun-2006 17:56  41.8M  
[SND] tetex-3.0-3.nosrc.rpm   20-Jun-2006 17:5611k  
[   ] tetex-3.0-3.src.rpm-1   20-Jun-2006 17:58  66.8M  
[   ] tetex-3.0-3.src.rpm-2   20-Jun-2006 18:01  62.0M  
[SND] tetex-3.0-4.nosrc.rpm   21-Jun-2006 21:3511k  

To get the package tetex-3.0-3.i586.rpm, you need to do
cat tetex-3.0-3.i586.rpm-1 tetex-3.0-3.i586.rpm-2 tetex-3.0-3.i586.rpm

To get the package tetex-3.0-3.src.rpm, you need to do
cat tetex-3.0-3.src.rpm-1 tetex-3.0-3.src.rpm-2 tetex-3.0-3.src.rpm

Both packages can be build from tetex-3.0-3.nosrc.rpm

Peter


OK if I catenate the two 586 files, I get one rpm. Presumably I
can just unpack the rpm and go. Or do I need to do something
with one of the two nosrc RPMs? And why are there two nosrc RPMs? 
I'm a tarball guy myself, although Slack has an RPM command too.
Anyhow the first two are downloading right now. Stay tuned.
Advice welcome. 
-- 
John Culleton
Books with answers to marketing and publishing questions:
http://wexfordpress.com/tex/shortlist.pdf

Book coaches, consultants and packagers:
http://wexfordpress.com/tex/packagers.pdf

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


Re: [NTG-context] Linux upgrade

2006-06-23 Thread John R. Culleton
On Friday 23 June 2006 12:34 pm, Peter Münster wrote:
 On Thu, 22 Jun 2006, John R. Culleton wrote:
  So next I tried linux binaries only. Still no joy.

 Hello John,
 you could try the tetex-rpm from http://pmrb.free.fr/work/OS/ConTeXt/tetex/
 It has the latest ConTeXt (also latest pdfTeX and MetaPost) and a command
 updateConTeXt.sh to easily update to the most recent ConTeXt.
 Cheers, Peter

Well I downloaded the two files, catenated them into one called
tetex.rpm, and then tried to unpack the result with rpm -i tetex.rpm
I got a fistful of spurious error messages. So I missed something
somewhere. Any hints?

-- 
John Culleton
Books with answers to marketing and publishing questions:
http://wexfordpress.com/tex/shortlist.pdf

Book coaches, consultants and packagers:
http://wexfordpress.com/tex/packagers.pdf

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