+1 vote
in CMS Tips by (64.6k points)

I am using the Jetpack plugin to write LaTex expressions in my posts. However, the default font size seems a bit smaller. Is there any way to increase the font size of LaTex expressions in WordPress posts?

My LaTex expression is as follows:

$latex \text{Product of Powers: } a^m \cdot a^n = a^{m+n}$

1 Answer

+2 votes
by (359k points)
selected by
 
Best answer

If you are using the Jetpack plugin, you can change the font size of the LaTeX expressions by specifying an "s" parameter after the LaTeX code.

Here is the template:

$latex \LaTeX&s=X$

Where X goes from -4 to 4 (0 is the default).

You can modify your LaTex code as follows to use a large font size.

$latex \text{Product of Powers: } a^m \cdot a^n = a^{m+n}&s=1$

Set 's' to a bigger value, such as 2, 3, or 4 if you need a bigger font size.

Related questions

+1 vote
1 answer
+3 votes
1 answer
+2 votes
1 answer
+1 vote
1 answer

...