f = plot(exp(-1/2*x) * cos(2*pi*x),(x,0,6),rgbcolor=(1,1,0),legend_label='exp(-1/2*x) * cos(2*pi*x)')
g = plot(exp(-1/2*x), (x,0,6),rgbcolor=(0,0,1),legend_label='exp(-1/2*x)')
h = f+g
h.axes_label_color((1,0,0))
h.axes_labels(['$X-Achse$','$Y-Achse$'])
h.set_legend_options(shadow=True)
h.set_legend_options(loc=(0.7,0.2))
show (h)