gpt4 book ai didi

wolfram-mathematica - 我们可以在 PowerPoint 或 Keynote 中显示一些 Dynamics/CDF 吗?

转载 作者:行者123 更新时间:2023-12-04 03:09:28 52 4
gpt4 key购买 nike

我想在演示文稿中显示一些动态内容。但是,我不确定在星期四之前我是否有时间以我希望在 Mathematica 中的方式制作幻灯片。

是否可以在 Powerpoint (Microsoft) 或 Keynote (Apple) 演示文稿中在 Mathematica 中构建动态对象?

最佳答案

制作少量 Manipulate 有什么问题,将它们每个导出到单独的 CDF,然后您就可以在那里进行演示。

您可以制作一个网页,每个页面可以包含一个 CDF。每一页就像你的一张幻灯片。

您可以单击链接转到下一个网页。下一张幻灯片,您可以在其中运行下一个 CDF。

在网页中插入CDF,很简单,像这样

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<BODY >

<p><script src="http://www.wolfram.com/cdf-player/plugin/v1.0/cdfplugin.js"
type="text/javascript"></script><script type="text/javascript">// <![CDATA[
var cdf = new cdf_plugin();
cdf.addCDFObject("source", "source.cdf",840,670);
// ]]></script>

<img id="source" src="screen_shot.png"
alt="screen_shot" />

</BODY>
</HTML>

将您的 cdf 文件放在同一个文件夹中。

如果您了解latex,您可以编写latex 文档,将它们作为文档的部分,在latex 中插入HTML 代码,使用latex2html 将latex 文档导出为html。 (这就是我对我的网页所做的)。像这样
\documentclass[12pt]{article}

\usepackage{graphicx}
\usepackage{html}

\begin{document}
\begin{rawhtml}
<p><script src="http://www.wolfram.com/cdf-player/plugin/v1.0/cdfplugin.js"
type="text/javascript"></script><script type="text/javascript">// <![CDATA[
var cdf = new cdf_plugin();
cdf.addCDFObject("source", "source.cdf",840,670);
// ]]></script>

<img id="source" src="screen_shot.png"
alt="screen_shot" />
\end{rawhtml}
\end{document}

然后输入 latex2html foo.tex ,它将为您生成 html。通过这种方式,您可以使用 Latex 编写真正的数学,并将 CDF 放在我们的同一页面中,在您的方程式旁边。

演示文稿所需的只是浏览器和安装的 CDF 插件。

或者,您可以简单地将所有内容保留在 Mathematica 本身中,在 mathematica 笔记本的每个部分中使用 Manipulate,然后在演示时在 Mathematica 中运行该笔记本。

忘记电源点和PDF。那现在太无聊和老式了:)

CDF是要走的路。

关于wolfram-mathematica - 我们可以在 PowerPoint 或 Keynote 中显示一些 Dynamics/CDF 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7473799/

52 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com