s = plot (exp(-1/2*x)*cos(2*pi*x), (x,0,6), legend_label='exp(-1/2*x)*cos(2*pi*x)')
p = plot (exp(-1/2*x), (x,0,6), color = 'red', legend_label='exp(-1/2*x)')
h = s+p
h.set_legend_options(shadow=True)
h.set_legend_options(loc=(0.5,0.0)); h
h.axes_labels(['X-Achse','f(x)'])
h.axes_label_color(('green'))
show (h)