I have a couple of ListLinePlot
s that I create in my notebook. I want the title of each plot to appear as
Style["〈the title〉", FontSize -> 18, Black]
Doing
SetOptions[ListLinePlot,
PlotLabel -> Style["my title", FontSize -> 18, Black],
]
doesn't seem to work. For example,
ListLinePlot[
{}
,PlotLabel -> "Plot no. 1"]
inserts the title "Plot no.1" but all the directives from SetOptions
are not taken into effect. Why?