-
Notifications
You must be signed in to change notification settings - Fork 18
ES 861360 Modify the syntax in LaTeX #1732
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ES 861360 Modify the syntax in LaTeX #1732
Conversation
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
|
||
| //Append an border box equation using LaTeX. | ||
| document.LastParagraph.AppendMath(@"\boxed{x^2 + y^2 = z^2}"); | ||
| document.LastParagraph.AppendMath(@"\boxed{{x}^2+{y}^2={z}^2}"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add curly braces for 2 also.
|
|
||
| //Append an Left SubSuperScript equation using LaTeX. | ||
| document.LastParagraph.AppendMath(@"{_40}^{20}}100"); | ||
| document.LastParagraph.AppendMath(@"{_40^{20}}100"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please modify properly it is invalid syntax
|
Build Status: INQUEUE 🕒 |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
Build Status: INQUEUE 🕒 |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
| <td>1.</td> | ||
| <td><img src="WorkingwithMathematicalEquation_images/Radical1.png" alt="Radical equation"></td> | ||
| <td>\sqrt a</td> | ||
| <td>@"\sqrt{a}"</td> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whether the @ symbol is mandatory?
|
|
||
| //Append an Left SubSuperScript equation using LaTeX. | ||
| document.LastParagraph.AppendMath(@"{_40}^{20}}100"); | ||
| document.LastParagraph.AppendMath(@"{_{40}^{20}}100"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add curly braces for 100 too
|
|
||
| 'Append an Right SubSuperScript equation using LaTeX. | ||
| document.LastParagraph.AppendMath(@”{100}_{40}^{20}") | ||
| document.LastParagraph.AppendMath(@"{100}_{40}^{20}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the same changes not done for Windows specific and vb
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
HI All
Modify the syntax in LaTeX.
Regards
Venkatesh