问题描述
我记得WRI的某人在官方新闻组 Mathematica 7仍具有来自 Mathematica 5的可运行的老式Mathematica帮助浏览器,以实现兼容性.但是我找不到提供调用它的代码的帖子.
I remember that someone from WRI stated in the official newsgroup that Mathematica 7 still has a working old-fashioned Mathematica Help Browser from Mathematica 5 for compatibility purposes. But I can not find the post where the code for invoking it is given.
如何在新版本的 Mathematica 中调用和使用此旧版帮助浏览器?
How to invoke and use this legacy Help Browser in new versions of Mathematica?
推荐答案
此刻,我发现了两种通过单击按钮来调用旧版帮助浏览器"的方法:
At this moment I have found two ways to invoke the legacy Help Browser by clicking a button:
DisplayForm@ButtonBox["Preface",
BaseStyle -> "AddOnsLinkText",
Active -> True,
ButtonData :> {"PCT Preface", None}]
和
DisplayForm@
ButtonBox[" »", BaseStyle -> "Link", Evaluator -> Automatic,
ButtonFunction :> (PacletManager`Package`helpBrowserLookup[#] &),
ButtonData -> "Help Browser"]
我发现我们有全局选项 HelpBrowserSettings
指定设置旧版帮助浏览器.
I found that we have the global option HelpBrowserSettings
that specifies settings for the legacy Help Browser.
并且我们仍然具有有效的功能HelpBrowserLookup
和HelpBrowserNotebook
(目前未记录)以及命令FrontEndTokenExecute["RebuildHelpIndex"]
,用于重建旧版帮助浏览器的帮助索引.
And we still have working functions HelpBrowserLookup
and HelpBrowserNotebook
(now undocumented) and command FrontEndTokenExecute["RebuildHelpIndex"]
for rebuilding the help index of the legacy Help Browser.
这篇关于新版本的Mathematica中来自Mathematica 5的Mathematica帮助浏览器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!