Re: [NTG-context] Is startalign broken in mkiv?

2012-07-18 Thread Khaled Hosny
On Tue, Jul 17, 2012 at 09:48:31PM -0400, Matthias Weber wrote: It was never a problem in TeX to modify the control characters used according to your own pleasure. Except that is not the kind of thing ConTeXt users are supposed to mess with, I feel guilty every time I mess with catcodes in my

Re: [NTG-context] Is startalign broken in mkiv?

2012-07-18 Thread Matthias Weber
Thanks. Now I have my own little sacrilege in the environment file. Matthias On Jul 17, 2012, at 11:13 PM, Rogers, Michael K mrog...@emory.edu wrote: Here's a backward-compatibility hack that works on your minimal example. Maybe it will save the dozens of files without changing all the s:

[NTG-context] Is startalign broken in mkiv?

2012-07-17 Thread Matthias Weber
\starttext \startformula \startalign v = u + at \\ h = ut + \frac12 gt^2 \\ \stopalign \stopformula \stoptext ConTeXt ver: 2012.07.17 16:42 MKIV fmt: 2012.7.17 int: english/english (...) ! Missing $ inserted. system tex error on line 3 in file test.tex: Missing $ inserted

Re: [NTG-context] Is startalign broken in mkiv?

2012-07-17 Thread Hans Hagen
On 18-7-2012 00:22, Matthias Weber wrote: \starttext \startformula \startalign v = u + at \\ h = ut + \frac12 gt^2 \\ \stopalign \stopformula \stoptext ConTeXt ver: 2012.07.17 16:42 MKIV fmt: 2012.7.17 int: english/english (...) ! Missing $ inserted. system tex error

Re: [NTG-context] Is startalign broken in mkiv?

2012-07-17 Thread Matthias Weber
Thanks - I wasn't aware that the human readable version had been deprecated :( Matthias On Jul 17, 2012, at 7:17 PM, Hans Hagen pra...@wxs.nl wrote: On 18-7-2012 00:22, Matthias Weber wrote: \starttext \startformula \startalign v = u + at \\ h = ut + \frac12 gt^2 \\ \stopalign

Re: [NTG-context] Is startalign broken in mkiv?

2012-07-17 Thread Khaled Hosny
The use of (which is a common symbol) as a control character is a long standing idiosyncrasy of TeX that I'm glad ConTeXt has got rid of. On Tue, Jul 17, 2012 at 07:32:09PM -0400, Matthias Weber wrote: Thanks - I wasn't aware that the human readable version had been deprecated :( Matthias

Re: [NTG-context] Is startalign broken in mkiv?

2012-07-17 Thread Matthias Weber
It was never a problem in TeX to modify the control characters used according to your own pleasure. For me, the problem is now to change the 200+ occurrences of start/stopaligns distributed over dozens of files to the politically correct syntax. Matthias On Jul 17, 2012, at 7:41 PM, Khaled

Re: [NTG-context] Is startalign broken in mkiv?

2012-07-17 Thread Rogers, Michael K
Here's a backward-compatibility hack that works on your minimal example. Maybe it will save the dozens of files without changing all the s: \let\oldstartalign=\startalign \let\oldstopalign=\stopalign \let\oldbs=\\ \def\startalign{\catcode`=4\let\\=\cr\oldstartalign}