We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I render this latex like this "\text { Simplify the expression. }" directly. the result will remove all space symbol.
But I got a soluation by add [self skipSpaces] before handle the next char
Is there a better solution?
The text was updated successfully, but these errors were encountered:
You should add a space after "text". This works;
.replacingOccurrences(of: " ", with: "\text ")
Sorry, something went wrong.
Can you please help that how we can fix space issue with text
You should add a space after "text". This works; .replacingOccurrences(of: " ", with: "\text ")
No branches or pull requests
When I render this latex like this "\text { Simplify the expression. }" directly. the result will remove all space symbol.
But I got a soluation by add [self skipSpaces] before handle the next char
Is there a better solution?
The text was updated successfully, but these errors were encountered: