How to partially change the default stylesheet for the current laptop

Is there a way to make a slight modification by default to the appearance of the cells in the current Laptop without specifying the entire set of parameters? For example, I want all Cell with the Text style in the current Notebook to have a default

  CellMargins -> {{Inherited, Inherited}, {0, Inherited}} 

All other parameters should be inherited from the default stylesheet. How can I achieve this?

+4
source share
1 answer

Open the edit stylesheet from the Format menu.

Then paste the following into it:

 Cell[StyleData["Text"], CellMargins -> {{Inherited, Inherited}, {0, Inherited}}] 

EDIT : add screenshot:

enter image description here

+4
source

Source: https://habr.com/ru/post/1346023/


All Articles