-
Notifications
You must be signed in to change notification settings - Fork 294
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
LaTeX render wrong #2686
Comments
Thanks for the bug. I believe this is a known issue right now that we are currently fixing. CC @rchiodo |
@jmew this is actually separate issue. The other fix was for markdown. This is in a code cell. This has never worked actually. |
I have been troubled by the same issue. As @wuyudi said, Python 3.6.7 can solve this problem. init_printing(latex_mode='equation') |
I've had this problem with Python 3.8.1. With the fix by @onyukim I've had the LaTeX render on a light grey raster. Using mathjax I got it to work: sy.init_printing(use_latex="mathjax", latex_mode="equation") |
from sympy import *
init_printing(latex_mode='equation')
x=symbols('x')
integrate(Ci(x)/x,x) I get this. to fix this, I use @ruilvo 's way, which gives a better effect. |
Validated the original example with master bits. |
@wuyudi what color scheme are you using? For me the fonts are all simply white, it doesn't show any syntax highlighting for variables, arguments, functions. etc. |
@nielsgl Maybe I turn it off , and it looks like this: |
Environment data
"python.jediEnabled"
set to; more info How to update the language server to the latest stable version vscode-python#3977): XXXExpected behaviour
this is from chrome
Actual behaviour
Steps to reproduce:
[NOTE: Self-contained, minimal reproducing code samples are extremely helpful and will expedite addressing your issue]
run
Logs
Output for
Python
in theOutput
panel (View
→Output
, change the drop-down the upper-right of theOutput
panel toPython
)Output from
Console
under theDeveloper Tools
panel (toggle Developer Tools on underHelp
; turn on source maps to make any tracebacks be useful by runningEnable source map support for extension debugging
)Besides , someone told me that python 3.6.7 can solve this problem(that ideal photo is from him). Which maybe helpful.
The text was updated successfully, but these errors were encountered: