-
-
Notifications
You must be signed in to change notification settings - Fork 68
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
docx writer: fully support for \mathop{} #194
Comments
in another word, inline mode: |
Let's reopen this as a texmath issue, maybe we can support mathop better. |
The problem is this. In texmath's model for formulas, the MathOperator constructor takes a Text argument, not an arbitrary structured formula. So when we run into something like The right fix, you'd think, would be to change the type of the argument to MathOperator. However, it's tricky because we need to support multiple formats. Clearly a math operator in TeX can be just about anything, but I think in MathML the So I'm not sure at the moment what the best solution is. |
I want to write
\varlimsup_{n\to\infty}
in markdown and convert it to wordbut I got an error when I convert, I think the reason is pandoc don't know how to convert it. so I use
\mathop{\overline{\lim}}
, but the result is wrongand I try
\underset{n\to\infty}{\overline{\lim}}
, it worksso I hope pandoc can support
\mathop{}
correctlythis image is an example of what I say above:
![image](https://user-images.githubusercontent.com/36830343/175827819-8b864843-d9b4-430b-8be4-f0a5075fe39b.png)
The text was updated successfully, but these errors were encountered: