# setting 4 subplots (2 rows, 2 columns) with global title size 14
set multiplot layout 2,2 title 'Multiplot Example' font ',14'
# plots are rendered left to right and top to bottom
plot sin(x)
plot sin(x), cos(x)
plot cos(x)
plot tan(x)
# ending the multiplot
unset multiplot