在LaTeX字符串中显示天文数量

时间:2016-11-21 15:43:19

标签: python latex ipython-notebook astropy

我正在寻找一种在IPython笔记本中的LaTeX字符串中呈现astropy变量的方法。例如,给出一个简单的前提,

from astropy.constants import c
import astropy.units as u
from astropy import log

默认情况下,光速的精确渲染为:

latex-rendering

只需在ipython提示符下输入即可。现在,如果我想将其嵌入字符串中该怎么办?如何跳过astropy已经使用的同一渲染系列来打印像'Speed limit: {}'.format(c)这样的示例字符串?

到目前为止我尝试过的所有内容,包括LaTeX格式字符串的变体,只显示ASCII字符串作为输出: ascii-rendering

1 个答案:

答案 0 :(得分:2)

可能有一个更优雅的解决方案,但这有效: enter image description here