Processing math: 100%
Ask Your Question
1

Set LaTeX fontsize in labels?

asked 10 years ago

Eugene gravatar image

The size of the text:

plot(sin, 0, pi, legend_label='$sin(x)$', fontsize=28)
plot(sin, 0, pi, legend_label='$sin(x)$').show(fontsize=28)

differs for the parts rendered using LaTeX (i.e. they are not affected by the fontsize size, sin(x) is still a small text). How can I specify font for the LaTeX parts of the labels?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 10 years ago

eric_g gravatar image

Use the function set_legend_options as follows:

g = plot(sin, 0, pi, legend_label='$sin(x)$', fontsize=28)
g.set_legend_options(font_size=28)
show(g)
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 10 years ago

Seen: 1,043 times

Last updated: Mar 22 '15