I am currently using vue-mathjax to render math equations in my vue project. The library is able to compile text enclosed between parentheses (). However, I encountered an issue where I needed to prevent the compiler from processing the text inside the brackets. After referring to the documentation, I learned that in order to escape compilation for the $ sign, one needs to use \$. Therefore, I attempted to apply this rule to the text within the parentheses.
Desired Output: (this is not math)
Here is what I attempted: \(this is not math \)
Resulting Output: \(this is not math \)
Although the text inside the parentheses was not compiled as a math equation, the output displayed the backslashes (\).
If I were to omit the backslashes, like so: (this is not math)
The output would be: this is not math
Mathjax will proceed to compile the string contained within the brackets.
Is there anyone who can assist me with this predicament?