18 Mar
2010
18 Mar
'10
1:01 p.m.
On 3/18/2010 4:15 PM, Wolfgang Werners-Lucchini wrote:
the following example compiles ok
\starttext \startformula \frac{206}{7}=[29;2,2,1] \stopformula \stoptext
while this compiles not
\starttext \startformula [29;2,2,1]=\frac{206}{7} \stopformula \stoptext
In context, commands accept options enclosed by [] after their name. In the second example, context expect [29;2,2,1] to be options for \startformula. So replace the second one with \startformula[] [29;2,2,1]=\frac{206}{7} \stopformula Mehdi