Hi Natalie,
On analyzing the given details, we found that your requirement is to add an
arrow in a LaTeX equation. To achieve your requirement, please follow the below
LaTeX syntax.
// Create a new Word
document.
WordDocument document =
new WordDocument();
// Adds a new section into
the Word Document
var section =
document.AddSection();
// Adds a new paragraph
into Word document and appends text into paragraph
var paragraph = section.AddParagraph();
paragraph.AppendMath(@"\frac{{b}_f}{{2t}_f}
\le 12.0 \rightarrow7.2
\le 12.0");
document.Save(@"../../Output.docx",
FormatType.Docx);
document.Close();
Regards,
Akash.