Text Formatting ⇒ Increase Font Size in Math Environment
Increase Font Size in Math Environment
Here is a simple question (I sure...):
I want to write the greek letter "tau" with undercase "esc" at the beginning of my paragraph, and I want it to be a bit larger then the font size.
I used the mat env' as $\tau_{esc}$, however couldn't find a way to make it bigger then the paragraph fonts.
What is the better way to do this ?
Thanks
Tomer.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Increase Font Size in Math Environment
Use this package called relsize.
And use the commands \mathlarger and \mathsmaller for adjusting sizes...
You can repeat it to progressively increase the size
Example:
Code: Select all
\[
\mathlarger{\frac{1}{x}}
\]
Code: Select all
\[
\mathlarger{\mathlarger{\frac{1}{x}}}
\]

If it solves the plroblem, please edit your message and change the icon to a check box to signify that the message is resolved.

Hope it helps,
Skanda.
Re: Increase Font Size in Math Environment
Thank you very much.
Allthoght a bit cumbersom (I had to use 4 sequantial commends in order to get the result), it worked.
Tomer.