How to display math in LaTeX font using Visual Studio 2010 C# -
How to display math in LaTeX font using Visual Studio 2010 C# -
i display mathematical symbols in conventional latex font using c# in visual studio 2010. not want utilize latex equation editing machinery, want utilize traditional latex font family, believe called computer modern. using mathematical symbols in font, build own equation editor.
i have downloaded , installed computer modern font, , indeed can select font list in visual studio. however, result text characters indeed displayed in computer modern font, mathematical symbols not; latter seem unaffected changing font family property.
for example, have label content property text string contains formula, integral on x
of function f(x)
. display formula in conventional latex font style. utilize unicode \u222b
refer integral sign. text string reads \u222b f(x)dx
. now, when alter font family property, text f(x)dx
affected, integral sign remains same! find unicode integral sign extremely ugly, , traditional latex integral sign beautiful, case many other mathematical symbols well. how can create sure integral sign becomes displayed in traditional latex font style?
please utilize simple language in answer, not professional!
any help much appreciated!
if downloaded computer modern font windows understands, conversion ttf of original representation in tex. tex invented before unicode, these characters missing converted font, causing windows fall onto default font.
tex custom tricks, such composing multiple glyphs stretchable integral signs, not supported windows font renderer.
furthermore, using such custom font, application won't work on computers don't have font.
i think best bet, sad true, utilize latex render equations png files (with transparent background), , utilize these in ui. this question on superuser should help accomplish creation of these pngs.
visual-studio-2010 fonts latex
Comments
Post a Comment