Many thanks. Is there also a simple way to place a 2 above the = character as the definition does.

Thanks
Jeroen

Op zo 29 sep. 2019 om 18:47 schreef Wolfgang Schuster <wolfgang.schuster.lists@gmail.com>:
Jeroen schrieb am 29.09.2019 um 20:30:
> Dear list members,
>
> I am trying to get the following with the 1 elevated and 2 above the =
> character. The square brackets and all in between I would like italic
> and OPT below both terms.
>
> *\startparagraph [.1..] [..,..2=..,..] ..**.\stopparagraph*
>
> Would anybody be able to help. Would Metapost be needed here?

When you look at the command definition in setup-en.pdf you can two
lines below the command which refer to the two arguments.


                   1         2
\startparagraph [...] [..,..=..,..] ... \stopparagraph
                  OPT       OPT

1 NAME
2 inherits: \setupparagraph


The NAME for the first arguments means you can the pass of a named
instance, such a instance can be created with the \defineparagraph
command, e.g. \defineparagraph [bold] [style=bold].

The inherits: ... means you can pass options from the \setupparaph
command, e.g. \startparagraph [color=blue]. For get a list of all
possible options for this argument take a look at \setupparagraph.

Wolfgang