I made the following graphic with Mathematica 9.0:
![GraphicsRow[ListLinePlot[]ĹistLinePlot[]]](https://i.sstatic.net/DJ19P.png)
Does anybody know how to put a title on the top of the whole graph? (not in each single plot).
Basically I used
GraphicsRow[ListLinePlot[]ListLinePlot[]] Thanks.
I made the following graphic with Mathematica 9.0:
![GraphicsRow[ListLinePlot[]ĹistLinePlot[]]](https://i.sstatic.net/DJ19P.png)
Does anybody know how to put a title on the top of the whole graph? (not in each single plot).
Basically I used
GraphicsRow[ListLinePlot[]ListLinePlot[]] Thanks.
p = Plot[Sin[x], {x, 0, 2 Pi}, ImageSize -> 200]; Framed[ Column[ { Style["Sinus", Darker@Blue, Bold, 16], GraphicsRow[{p, p}] }, Alignment -> Center], FrameMargins -> 10] 