wawawa
wawawa

Reputation: 3355

Is there a way to control the font size in the equation in JupyterNotebook?

In Jupyter Notebook markdown cells, is there a way to make the font size larger in the equation?

c = $\frac{a}{b}$

I triedc = \large{$\frac{a}{b}$} but it doesn't work.

Upvotes: 11

Views: 13150

Answers (1)

Wayne
Wayne

Reputation: 9909

The dollar signs start and end LaTex boundaries, and so you need to use the tag inside.

c = $\Large\frac{a}{b}$

UPDATE:
I have a comment below that points to an image listing the tags and illustrating the relative sizes. I'm putting that link here in the post so that it is better featured.

Upvotes: 27

Related Questions