HTML input field within mathjax tex equation

I have a question about Mathjax.

I am trying to include html input fields such as:

<input id="up" type="text">

in the tex equations.

I have tried a lot now:

$$ \frac{<input id="up" type="text"/>}{1} $$

This will not work. Is there any way to do this?

+4
source share
1 answer

No, It is Immpossible. MathJax formats mathematical expressions that are represented using special syntax. There are no HTML tags in the syntax.

+2
source

Source: https://habr.com/ru/post/1541693/


All Articles