In LaTex I build the following macro "kum" for translating arabic to german. The result are two minipages, left one with german, right one with arabic (the other two minipages were for design-issues). The macro "arab" is not shown, it just choose an arabic font.
\newcommand{\kum}[2]{
\begin{minipage}[t]{0.445\textwidth} \small
#1
\end{minipage}
\begin{minipage}[t]{0.05\textwidth}
~
\end{minipage}
\begin{minipage}[t]{0.445\textwidth}
\begin{arab}[voc]
\raggedleft
#2
\end{arab}
\end{minipage}
\begin{minipage}[t]{0.06\textwidth}
~
\end{minipage}
}
Now I've two questions:
- What is the equivalent of minipages in ConTeXt?
- How to realize the above LaTeX code in ConTeXt? (both with engine LuaTeX)
