Dear all,
I am trying to include two labels with double quotes (i.e., "Good" vs. "Poor" and "Great" vs. "Good") on the y-axis of a plot. The double quotes are essential, so I tried using compound double quotes in my code:
ylabel(1 "Switch-up" ///
2 "Switch-down" ///
3 `"Distance to "Good""' ///
4 `"Distance to "Great""' ///
5 `""Good" vs. "Poor""' ///
6 `""Great" vs. "Good""') ///
However, this code breaks the 5th and 6th labels into three separate lines, and the double quotes are not displayed correctly.
Can anybody help me fix this issue? Thanks in advance.
I am trying to include two labels with double quotes (i.e., "Good" vs. "Poor" and "Great" vs. "Good") on the y-axis of a plot. The double quotes are essential, so I tried using compound double quotes in my code:
ylabel(1 "Switch-up" ///
2 "Switch-down" ///
3 `"Distance to "Good""' ///
4 `"Distance to "Great""' ///
5 `""Good" vs. "Poor""' ///
6 `""Great" vs. "Good""') ///
However, this code breaks the 5th and 6th labels into three separate lines, and the double quotes are not displayed correctly.
Can anybody help me fix this issue? Thanks in advance.
Comment