19

Under V9 "Help" was a Item each for "Function Navigator" and "Virtual Book" to find and one could work with it.

enter image description here enter image description here

Under V10 these Helpers are gone. Although under Documentation/English/System the NoteBook "DocumentationNavigator.nb" can still be found, if even with errors ...

enter image description here

I work with OSX10.9.4, this deficiency is also under Windows, Linux?

Is there a way to revive these functions?

I'm aware of Documentation Center.

J. M.'s missing motivation
  • 124,525
  • 11
  • 401
  • 574
  • 4
    The Function Navigator seems to be truly gone as separate entity, but some of its functionality is retained in a row of links running across the bottom of the home page of the Documentation Center. – m_goldberg Jul 14 '14 at 09:58

2 Answers2

17

Although I haven't examined it to see how complete it is, putting Virtual Book into the search bar of the Documentation Center quickly found this:

Which can be accessed locally with: tutorial/VirtualBookOverview

enter image description here

Mr.Wizard
  • 271,378
  • 34
  • 587
  • 1,371
17

Update for V13

Sometime by or before V13.0, the functionality changed, and it appears the old navigator is gone. Now you can access the doc page (the same as in Mr.Wizard's answer) with this new syntax:

TreeBrowse`DocsNavigatorLookup[
 NotebookObject[Null], "paclet:tutorial/VirtualBookOverview"]

The first argument is unused. DocsNavigatorLookup now just executes the front end token "OpenHelpLink" on whatever doc page is passed as the second argument.

Previous answer

One may also call up the old navigator palette with

TreeBrowse`DocsNavigatorLookup[False]

Mathematica graphics

Michael E2
  • 235,386
  • 17
  • 334
  • 747
  • On Win 10/11 and MMA v13, @Mr.Wizard's method still works for accessing the Virtual Book. – david Feb 10 '22 at 19:23
  • @david Yes, I meant to imply that the V13 method I added does nothing more than call up tutorial/VirtualBookOverview, just like Mr.Wizard's, but by slightly a different mechanism. Principally I was explaining the new working of TreeBrowse`DocsNavigatorLookup, since it seems the old navigator is now gone. Not sure why they left DocsNavigatorLookup in the system, esp. with a different syntax that breaks backwards compatibility. – Michael E2 Feb 10 '22 at 20:33
  • Ah, I see that now. – david Feb 10 '22 at 21:19