|
How to add bold greek symbols to plot text? R's
Example:How can I make plot(1, main = expression(bold(beta*'-value')))Unicode?Some SO answers suggested trying to use a unicode version of the symbol that is bold. However, all the bold beta symbols I've tried don't render on my Mac.. https://www.fileformat.info/info/unicode/char/search.htm?q=beta&preview=entity |
Replies: 2 comments
|
Although the bold unicode symbols did not work (see above), thanks @lydiayliu for the following solution: wrap a non-bold unicode symbol in https://www.fileformat.info/info/unicode/char/03b2/index.htm plot(1, main = expression(bold("\u03b2"*'-value')))Created on 2023-06-08 by the reprex package (v2.0.1) |



Although the bold unicode symbols did not work (see above), thanks @lydiayliu for the following solution: wrap a non-bold unicode symbol in
bold():https://www.fileformat.info/info/unicode/char/03b2/index.htm
Created on 2023-06-08 by the reprex package (v2.0.1)