The equation $y = 2x + 1$ のような文字列で,The equation は通常の書体で, $y = 2x + 1$ は LaTeX 表記で描きたい。
どうする?
using Plots, LaTeXStrings
pyplot()
x = 1:10
plot(x -> 2x^3 + 1, title=L"The equation $y = 2x^3 + 1$")
The equation $y = 2x + 1$ のような文字列で,The equation は通常の書体で, $y = 2x + 1$ は LaTeX 表記で描きたい。
どうする?
using Plots, LaTeXStrings
pyplot()
x = 1:10
plot(x -> 2x^3 + 1, title=L"The equation $y = 2x^3 + 1$")
※コメント投稿者のブログIDはブログ作成者のみに通知されます