2025年12月23日 星期二

使用 jupyter notebook,預設讓數學式以 latex 美觀呈現的方法

 讓 jupyter notebook 跑 sage 時都顯示漂亮數學式的方法


edit:

~/.ipython/profile_default/startup/00-sage-display.py


加入:

try:

    get_ipython().run_line_magic("display", "latex")

except Exception:

    pass