I would like to render two numbers on a web page like this:
123
+ 456
______
There is a similar question using mathml and mathjax Unable to render vertically lay out addition of two numbers with MathJax and MathML
Is there a way to achieve such rendering using asciimath
AsciiMath does not really have a syntax to do this properly, but you could try
The problem is that you have to do the alignment to the right by hand using
\
(backslash space), which is hard to get right. It would be better to use TeX or MathML input for this. Note that you can configure MathJax to allow for more than one input form, so could use AsciiMath for everything else, and MathML for this. For examplewould produce the aignment that you are looking for.