在过去版本的iPython笔记本中工作的SVG元素似乎不再起作用了

时间:2015-06-09 16:31:09

标签: ipython-notebook

具有以下代码段的降价单元格在早期版本中可以正常工作(我希望我已跟踪所有版本号)。我最近打开了一个旧笔记本,这似乎不再适用。关于什么可能出错的任何建议?

这是程式化的相关提取:如果我把它放在markdown单元格中,我希望在文本中嵌入一个矩形。

I want to draw a rectangle

<svg width="400" height="150" >
<g id="fig1">
    <text x="150" y="10" font-family="Verdana" font-size="10" fill="blue" > width </text>
    <rect x="50" y="20" width="100" height="50" style="fill:rgb(255,255,0);stroke-width:3;stroke:rgb(0,0,0)" />
    <text x="2" y="65" font-family="Verdana" font-size="10" fill="blue" > height </text>
</g>
</svg>

0 个答案:

没有答案