I did a polar stereographic plot then tried to write a label by using the following command:
go mp_label 10, 35, 0, 0, 0.14 @SR"5-23 February 2018"
Then in the label, ferret displayed
"5-23 February 2018, with the first " in the label.
It's not unique to polar stereographic plots:
set data levitus_climatology
fill/k=1 temp
label 150,0,0,0,0.2,"@SR5-23 February 2018" ! <- Correct
fill/k=1 temp
label 150,0,0,0,0.2,@SR"5-23 February 2018" ! <- Incorrect
The font specifier "@SR" should be within the string.
But if I do :
go mp_label 10, 35, 0, 0, 0.14 @SR5-23 February 2018, without "
then only 5-23 displayed in the label.
because of the space after "@SR5-23" .
Ryo