We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, my console app can produce latex and i was wondering if it is possible to render it as nice math formulae in the rtty?
I found the following LaTex rendering example on SO:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Katex</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" integrity="sha384-zB1R0rpPzHqg7Kpt0Aljp8JPLqbXI3bhnPWROx27a9N0Ll6ZP/+DiW/UqRcLbRjq" crossorigin="anonymous"> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js" integrity="sha384-y23I5Q6l+B6vatafAwxRu/0oK/79VlbSz7Q9aiSZUvyWYIYsd+qj+o24G5ZU2zJz" crossorigin="anonymous"></script> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js" integrity="sha384-kWPLUVMOks5AQFrykwIup5lo0m3iMkkHrD0uJ4H5cjeGihAutqP0yW0J6dpFiVkI" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script> </head> <body> <p>Math can be inline like \(2^{2x}=4\), or displayed like:</p> \[2^{3x}=8\] </body> </html>
It uses the onload() to display the formula, but I guess I will have to use a different event to redraw console window periodically. Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, my console app can produce latex and i was wondering if it is possible to render it as nice math formulae in the rtty?
I found the following LaTex rendering example on SO:
It uses the onload() to display the formula, but I guess I will have to use a different event to redraw console window periodically. Thank you!
The text was updated successfully, but these errors were encountered: