mathjax / MathJax

Beautiful and accessible math in all browsers
http://www.mathjax.org/
Apache License 2.0
10.23k stars 1.16k forks source link

> I don't think matching against Chinese is really the right answer, here. #3291

Open Toofan777 opened 1 month ago

Toofan777 commented 1 month ago
          > I don't think matching against Chinese is really the right answer, here.

When you are using dollar signs within text and you don't want them to be treated as math delimiters, you need to quote them with a backslash, as in \$1一个香蕉\$2. In order to get a literal backslash into a javascript string, you need to use two backslashes:

const tempstr = ref('\\$1一个香蕉\\$2');

the handling of \$ as an escape for $ is controlled by the processEscapes option in the tex block of your configuration. It is true by default, so this should work as is.

But the text content is not known in advance, it is returned by the ChatGPT. So I can only use regular matching '$...$',and then determine if there is Chinese inside, and then split the character '\' before '$'?

Originally posted by @guoyutao in https://github.com/mathjax/MathJax/issues/3265#issuecomment-2262427807

dpvc commented 1 month ago

What is your purpose in reposting this here? There is no new question, and there is already a response to that post.