-
Notifications
You must be signed in to change notification settings - Fork 10
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
Consider extension for LaTeXStrings #145
Comments
Part of #94. |
What happens if you write |
So I guess the question is whether |
If quarto used the text/latex mimetype, I guess both display and return value would work. For me using |
The mimetype wrapper mechanism might be suitable for this kind of thing instead of
|
You mean wrapping it with some object that renders to markdown latex, which is then used by quarto? Sounds good to me. |
Yes, something like that. |
Currently,
LaTeXString
s like they are output fromLatexify
have to beprint
ed withoutput: asis
. We could consider adding anexpand
overload for them in an extension so that returning them is like writing the math in markdown mode there. This makes them work everywhere where quarto implements math handling.This could look like:
The text was updated successfully, but these errors were encountered: