You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suggested fix: parseString.replace(pos, pos + 1, "^\\circ");
needs to be changed to this in TexParser.java parseString.replace(pos, pos + 1, "^{\\circ}");
Test-case: "\rotatebox{90.0}{ \text{ Temperature [°C] } }"
The text was updated successfully, but these errors were encountered:
°C
gets changed to
\\circC
Suggested fix:
parseString.replace(pos, pos + 1, "^\\circ");
needs to be changed to this in TexParser.java
parseString.replace(pos, pos + 1, "^{\\circ}");
Test-case:
"\rotatebox{90.0}{ \text{ Temperature [°C] } }"
The text was updated successfully, but these errors were encountered: