I'm not very good in English , so is hard to explain but how put the triangle in the left that deploy or collapse a group of cells ?
Asked
Active
Viewed 2,758 times
11
1 Answers
15
Several ways to make the opener icon for cell groups visible:
You can set the ShowGroupOpener to True for the current notebook using
SetOptions[EvaluationNotebook[], ShowGroupOpener -> True]
If you want the icon to show in all notebooks in the current front-end session use
SetOptions[$FrontEndSession, ShowGroupOpener -> True]
To get the opener icon showing in all later sessions, use
SetOptions[$FrontEnd, ShowGroupOpener -> True]
Alternatively, you can use the Option Inspector under the Format menu and change the value of ShowGroupOpener under Cell Options >> Display Options to True

kglr
- 394,356
- 18
- 477
- 896
-
1I suggest you add that you can also do this at the Style Sheet level. +1 – Mr.Wizard Aug 16 '14 at 05:18
-
@Mr.Wizard, I am drawing a blank on how to do this using
StyleSheets. If you don't mind could you please suggest a way or post a seperate answer? – kglr Aug 17 '14 at 02:11 -
I mean that you can set
ShowGroupOpenerfor aStyleDatacell in a style sheet to add an opener to all cells of that style. You could of course also create a new style, inheriting from an existing one if needed, that has an opener, then adding an opener is as easy as setting a style (which can be assigned a keyboard shortcut). – Mr.Wizard Aug 17 '14 at 05:38 -
@Mr.Wizard and kglr, do you know what is the best way to show the opener only for headings, but not for input/output cell pairs? Is there anything simpler than specifying it in the stylesheet individually for each heading style? – Szabolcs Sep 19 '15 at 14:43
-
@Szabolcs How about setting
SetOptions[EvaluationNotebook[], ShowGroupOpener -> True]and then putting an explicitShowGroupOpener -> Falseon theInputstyle in the stylesheet? Or do you mean something else? – Mr.Wizard Sep 19 '15 at 18:42

SetOptions[EvaluationNotebook[], ShowGroupOpener -> True]to show the opener icon next to the first cell in a cell group. – kglr Aug 15 '14 at 20:49Openerand 'OpenerView' – Jens Aug 15 '14 at 20:57cucarakafka– Dr. belisarius Aug 15 '14 at 21:46