Displaying 1 result from an estimated 1 matches for "4x5y".
Did you mean:
4x5
2011 Mar 31
1
Italicized title from index
...However, I need to italicize these species names.
I originally used the paste function, and had no problems with indexing:
*main=paste("Yield for ", testsub[1,3], " in management region ",
testsub[1,2])*
The title looks like: "*Yield for Gadus morhua in management region 4X5Y*"
I tried bquote from a related help thread, I tried to emulate it:
*spp<-testsub[1,3]*
*region<-testsub[1,2]*
*
*
*main=bquote(Yield ~ for ~ italic(.(spp)) ~ in ~ management ~ region ~
.(region))*
Which doesn't seem to work at all, but when I try not putting anything after
the it...