matheca中的键盘功能
我试图找出 Mathematica 有哪些键盘功能。希望任何人能够提供一些帮助。具体来说,我想:
1)如何实现类似“按任意键继续...”的行为
2)如何接受用户输入?
非常感谢。
I am trying to find out what keyboard functionalities Mathematica has. Would appreciate anyone to give some help. Specifically, I want to:
1) How to implement something like "press any key to continue..." behavior
2) How to accept user input?
Many thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要查看
Input
和ChoiceDialog
进行简单的操作。如果您想构建自己的界面,可以使用动态交互组件
CreateDialog
构造一个自定义笔记本对话框窗口来接受并返回您想要的任何类型的输入。您可能会找到控制对象简介和通用输入教程也很有用。
First, you'll want to look at
Input
andChoiceDialog
for something simple.If you want to build your own interface, you can use the dynamic interactivity components with
CreateDialog
to construct a custom notebook dialog window to accept and return whatever kind of input you'd like.You might find the Introduction to Control Objects and Generalized Input tutorials useful as well.