11

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 ?

enter image description here

Mr.Wizard
  • 271,378
  • 34
  • 587
  • 1,371
Kafkarudo
  • 619
  • 5
  • 9

1 Answers1

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

enter image description here

kglr
  • 394,356
  • 18
  • 477
  • 896
  • 1
    I 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 ShowGroupOpener for a StyleData cell 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 explicit ShowGroupOpener -> False on the Input style in the stylesheet? Or do you mean something else? – Mr.Wizard Sep 19 '15 at 18:42