react-mathjax icon indicating copy to clipboard operation
react-mathjax copied to clipboard

Math Formular occasonally not rendering

Open iroy2000 opened this issue 6 years ago • 1 comments

I found out that the Math formula occasionally are not rendering.

The following is what I did

<MathJax.Provider>
    <MathSolutionList />
</MathJax.Provider>

MathSolutionList contains N number of MathSolution that contain latex.

So it looks like something like that essentially the same concept ( consider there could be hundreds of them

<MathJax.Provider>
  <h2>Blah ...</h2>
  <MathJax.Node formula={content.latex[0]} />   // consider the latext are valid
  <p>blah ...</p>
  <MathJax.Node formula={content.latex[1]} />    
  ... 
<MathJax.Provider>

The problem I'm facing now, occasionally it only renders a ;, and the elements show something like this

Screen Shot 2019-11-25 at 9 25 47 AM

Any advice will be appreciated.

iroy2000 avatar Nov 25 '19 17:11 iroy2000

My problem is solved by switching to https://github.com/wko27/react-mathjax

iroy2000 avatar Jan 14 '20 17:01 iroy2000