7
votes
2answers
145 views

Formulas in ConTeXt are different from those in plain TeX

I often typeset formulas using TeX and friends. I noticed they are different between ConTeXt and plain TeX recently. \starttext \startformula \int\nolimits_a^bf(x)dx=F(b)-F(a) \stopformula \stoptext ...
10
votes
2answers
171 views

Ampersand in math in ConTeXt

I'm afraid this is fairly obvious and has been asked many times, but I could not find the answer. I am having trouble getting an ampersand in a displayed formula in ConTeXt. I tried the obvious ...
7
votes
2answers
133 views

Number kerning in ConTeXt math mode is different and worse than normal

Compare these two: \starttext \unit{0.01 kilogram} $ \unit{0.01 kilogram} $ \stoptext I would naively expect these to produce very similar results, but the latter case—the one in math mode—we get ...
5
votes
1answer
152 views

How to make written text within math mode appear using the font of the surrounding text in ConTeXt?

In some parts of my document, I have text inside of math mode, to position text, e.g.: \math{ \overset{ \text{This text is above.} } { \text{This text is below.} } } ...
4
votes
1answer
144 views

autopunctuation not working properly

What am I doing wrong? According to my understanding, these two formulae should look different (the second one should have a thin space): \setupmathematics[autopunctuation=yes] \starttext $(2,5)$ ...
1
vote
1answer
216 views

Different default color for each font in ConTeXt

Is there a way to specify the color along with the font name when using simplefonts? At the moment, I use the following to setup my default fonts. \usemodule[simplefonts] \setmainfont[Ubuntu] ...
2
votes
1answer
857 views

Double stroke math

I recently started using ConTeXt and am trying to figure out how to place number sets. Namely, how do I get the natural number and real number sets to look like they do in LaTeX, (i.e. \mathbb{N} and ...
1
vote
1answer
674 views

Inline Math in Display Mode

I know how to have inline math typeset as in display mode in LaTeX, i.e summations with the index below the sigma, but I'm trying to learn ConTeXt and cannot figure out how to do it. Any thoughts? Is ...
7
votes
2answers
326 views

Augmented matrices in ConTeXt?

In LaTeX, I could use: \[ \left[\,\begin{array}{rr|r}2&-3&6\\ 3&4&-9\end{array}\,\right] \] However, in ConTeXt, especially if I want right-alignments of columns, I seem to have to ...
2
votes
1answer
296 views

Matrices in ConTeXt?

I'm typesetting up some linear algebra notes, and in the process moving from LaTeX to ConTeXt. What is the most efficient method of entering matrices in ConTeXt? I can use plain TeX: \startformula ...
6
votes
1answer
235 views

Is there a ConTeXt version of the LaTeX lefteqn?

What I want is to be able to set up equations like this: a very long first expression = the second line = and a third line = and maybe even a fourth In LaTeX, this would be ...