Suppose that I use Frame -> True in Plot. Then I can use FrameLabel -> {"x (nm)", "y (nm)"} to label the frame (i.e., "pseudo-axes"). For example, I have done the following:
Plot[Sin[x], {x, 0, 2 Pi}, PlotRange -> All,
Frame -> True, FrameLabel -> {"x (nm)", "y (nm)"},
BaseStyle -> {FontFamily -> "Arial", 20}]

Now, however, I would like the characters "x" and "y" to be italicized in FrameLabel. Is this possible?
I would like my labels to look like this:
x (nm)
y (nm)
where x and y are italicized, but (nm) is not.
Do I need to use Style, or is there a simpler solution?
Also, in the future, I may need to create FrameLabel directives that are more complicated, such as:
Phi(z) (V)
where, for example, z is italicized, but Phi( and ) (V) are not.

