I am currently using this code to display a formatted LaTex equation:
var officeMath = new OfficeMath(document);
officeMath.FromLatexMathCode(k_{n+1} = n^2 + k_n^2 - k_{n-1});
paragraph.Items.Add(officeMath);
I would like to know if there is a way to apply character formatting to the paragraph items so I can change the font, justification, and alignment of the equation. Using officeMath.ApplyCharacterFormat() does not apply any changes to the equation formatting.