I am confused about when to use a simple list of style options, the Directive function or the Style function.
As shown below, for simple situations at least, they seem entirely equivalent which suggests personal preference.
This question regarding the requirement for the use of Directive indicates that aside from a some small edge cases, Directive is mostly preferred as easier to read and has the useful property that a single compound graphics Directive can be stored as a variable and referenced where needed.
That would have been enough for me except the Elementary Introduction Chapter 8 doesn't mention either of these and introduces Style. Style seems to be more widely applicable so perhaps it was chosen to minimise the number of functions introduced to a new user.
I am mostly interested in which method a beginner should start with as their default rather than trying to use all 3 at random - I'm leaning toward Directive since it translates well to Plot but again, all methods work so what am I missing?
{Graphics[{ Red, Thick, Circle[], Blue, Rectangle[] }] , Graphics[{ Directive[Red, Thick], Circle[], Directive[Blue], Rectangle[] }] , Graphics[{ Style[Circle[], Red, Thick], Style[Rectangle[], Blue] }] } 
Directive? Using a sequence of directives instead? Something else? $\endgroup$Graphics[{GrayLevel[Log[2]], Disk[]}]Does not work:Graphics[{Style[Disk[], GrayLevel[Log[2]]]}]$\endgroup$style = Directive[Red, Thick]; Graphics[{style, Circle[]}]. Does not work:style = {Red, Thick}; Graphics[{style, Circle[]}].Directivewas introduced to address this programming problem, imo. -- Note yourStyleversion is converted toGraphics[{{RGBColor[1, 0, 0], Thickness[Large], Circle[{0, 0}]}, {RGBColor[0, 0, 1], Rectangle[{0, 0}]}}], i.e., your first form, in the output in the front end. $\endgroup$Style:Graphics[Style[{Circle[], Rectangle[], Point[{0.5, 0.5}]}, "foo"]], where"foo"is a style you have defined in your stylesheet. It can automatically style most graphics primitives in a consistent way (other thanCircle[]for some reason -- an oversight???). $\endgroup$