Kostub Deshmukh
Kostub Deshmukh
Yes tex command `\textcolor`. Why can't you use it? It should be easy to add the `\color` command which is just an alias for `\textcolor`. Just add it to the...
Yes, not every symbol is included. If you need additional symbols that aren't present, you can add them as follows: ``` [MTMathAtomFactory addLatexSymbol:@"looparrowleft" value:[MTMathAtom atomWithType:kMTMathAtomRelation value:@"\u21AB"]]; ```
There was a pull request for doing something similar: https://github.com/kostub/iosMath/pull/10 Is that along the lines that you need?
Have you looked into using a PDF context instead of an image context? https://developer.apple.com/library/content/documentation/2DDrawing/Conceptual/DrawingPrintingiOS/GeneratingPDF/GeneratingPDF.html I don't know if that generates vector images or simply draws a bitmap onto a pdf...
Adding @wxlpp from #56
Currently there is no support for non-english languages. See #27 for ideas on how it could be implemented.
There is no way to access the raw contours as the fonts are rendered by CoreText library. However you can access the geometry that is given to the render functions...
The fonts are encapsulated in CoreText. But that shouldn't be a problem. You can get the curve from CoreText using: CTFontCreatePathForGlyph and passing it individual glyphs. The only thing you...
In fact, you don't even need to do positioning yourself, you can just use `CTRunGetPositions` to get the position of each glyph in the run.
The LaTeX algorithm can be found in the TeX book: See link: http://www.ctex.org/documents/shredder/src/texbook.pdf