15
  • Any idea how to remove the top bar saying

    "Wolfram Mathematica .... Demonstrations MathWorld Studenforum Help"

    from the Mathematica main window (see screenshot). It has no use to me and it steals real estate from my laptop sreen.

  • Also: How do I remove the bottom bar with the zoom button?

Appreciate any help!

frontend

keywords: student's edition dockedcells toolbar

Kuba
  • 136,707
  • 13
  • 279
  • 740
n3rd
  • 251
  • 2
  • 6

3 Answers3

12

In Mathematica catalog, in subfolder TextResources you'll find a file called MiscExpressions.tr.

Simply replace "StudentBar"-> Cell[BoxData[...]] with "StudentBar"-> Cell[]

There are two things to remember though:

  1. This might not be a legal thing to do.
  2. It's best not to modify the original file, instead save the modified file in your Mathematica $UserBaseDirectory under the same directory structure as the original file. This will make Mathematica use your new file, leaving the old one untouched.
Ranza
  • 1,205
  • 9
  • 22
10
SetOptions[InputNotebook[], "DockedCells" -> None]
M.R.
  • 31,425
  • 8
  • 90
  • 281
  • The structure of notebooks in the student version is the same as the full version, but I'm not sure how to automatically remove them for all new notebooks, shouldn't be too hard – M.R. Aug 15 '12 at 18:45
  • Nice...if that could be automatically... – n3rd Aug 15 '12 at 19:01
  • try to put in an init.m file, but careful this may interfere with slide mode that has docked cells. –  Aug 15 '12 at 21:14
  • Looks like this method doesn't work for Mathematica 9 for Students, any ideas on a fix? – DumpsterDoofus Jan 06 '14 at 02:20
6

Top bar case solved so about the bottom bar, you can drop some things from:

Options[EvaluationNotebook[], WindowElements]
{WindowElements -> {"StatusArea", "MemoryMonitor", "MagnificationPopUp", 
    "HorizontalScrollBar", "VerticalScrollBar", "MenuBar"}}

Like "StatusArea","MagnificationPopUp", "HorizontalScrollBar":

SetOptions[EvaluationNotebook[], WindowElements -> {
   "MemoryMonitor", "VerticalScrollBar", "MenuBar"}
]

There is also WindowFrame option for a notebook and some of them have less elements included. Edge example is "Frameless" but it behaves strangely according to my experience.

Kuba
  • 136,707
  • 13
  • 279
  • 740