harunurhan / react-latex-next

Render LaTeX in React apps
https://react-latex.netlify.app
76 stars 13 forks source link

Latex Font #52

Closed codewithjohnson closed 3 months ago

codewithjohnson commented 3 months ago

Hi. Is there a way to override the default latex Font size

harunurhan commented 3 months ago

You can just use css to change the font-size, basically something like below.

<div style={{ fontSize: 10em }}>
  <Latex>Formula: $3 \times 5$</Latex>
</div>

I'll expose style and className props for Latex at some point, so that it doesn't need to be wrapped by an html element to be styled.

Please re-open if you this doesn't work for you.