在these instructions之后,我尝试将SageMath单元(来自SageMath)嵌入到ioslides演示文稿(由RStudio开发)中。
我将步骤1,2,3中的html代码复制到了Rmd中,如下所示,并且SageMath单元已嵌入,但光标在SageMath单元内部的位置存在问题。查看ioslides主题CSS default.css,似乎line 527:left: -60px;
可能是造成SageMath单元问题的原因。
这是问题:
值得一提的是SageMath单元甚至没有出现在 HTML输出,如果
output: html_document
或 Rmd文件中的output: radix::radix_article
(已安装基数)。
这是嵌入了SageMathCell的Rmd文件:
---
title: "SageMath Cell Test"
output: ioslides_presentation
---
## SageMath Cell
<script src="https://sagecell.sagemath.org/static/embedded_sagecell.js"></script>
<script>sagecell.makeSagecell({"inputLocation": ".sage"});</script>
<link rel="stylesheet" type="text/css" href="https://sagecell.sagemath.org/static/sagecell_embed.css">
<div class="sage">
<script type="text/x-sage">1+2</script>
</div>