Kostub Deshmukh

Results 47 comments of Kostub Deshmukh

Sure. Although, you can use the following commands to get that display right now `\dfrac` is nothing but `\displaystyle\frac` and `\tfrac` is nothing but `\textstyle\frac`

Can you elaborate what you mean by "write a regex to $$...$$"?

Instead of downloading the project try cloning it. Downloading seems to mess it up in someway that I'm not sure why. Follow the instructions on: https://github.com/kostub/iosMath/issues/38

These are easy to add in your own code as follows: ```objective-c [MTMathAtomFactory addLatexSymbol:@"" value:[MTMathAtom atomWithType:kMTMathAtomRelation value:@""]]; ``` If there are standard symbols that should be included for everyone let...

`\stackrel` is defined as follows: ```latex \def\stackrel#1#2{\mathrel{\mathop{#2}\limits^{#1}}} ``` So you could make an operator with limits as the `\frown` and value as `AD`. Note however, you may not want it...

You can define your own symbols as follows: ``` [MTMathAtomFactory addLatexSymbol:@"radians" value:[MTMathAtom atomWithType:kMTMathAtomOrdinary value:@"\u33AD"]]; ```

Can you provide an example where the sizeToFit returns an incorrect size? It is supposed to be exact.

How much performance improvement do you expect here? I wrote an editor which uses the `MTUIMathLabel` and anytime the user updates the math, the latex string is reprased and rendered...

Chinese font is difficult to support because LaTeX is inherently ascii. Any non-ascii characters are excluded by default. There are some extensions to LaTeX which have unicode support, but that...

Thanks for the PR @AnZhg. It will be a great addition. I've suggested some changes on the PR.