我喜欢使用 SAGE 嵌入任何代码(下面的示例)。但我想使用此指令链接两个单元格,但这不起作用。我将如何解决这个问题?例如,我尝试从“计算”单元格中调用单元格“mycell”中的函数 Hola()。
<script>
$(function () {
// Make the div with id 'mycell' a Sage cell
sagecell.makeSagecell({inputLocation: '#mycell',
evalButtonText: 'Evaluate'});
// Make *any* div with class 'compute' a Sage cell
sagecell.makeSagecell({inputLocation: 'div.compute',
linked: true,
evalButtonText: 'Evaluate'});
});
</script>
<div id="mycell">
<script type="text/x-sage">
def Hola():
print "Hola"
</script>
</div>
<div class="compute"><script type="text/x-sage">
Hola()
</script>
</div>