Text FormattingIncrease Equation Size

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
mavenuparker
Posts: 6
Joined: Sun Jan 02, 2011 1:19 pm

Increase Equation Size

Post by mavenuparker »

How can I increase size of equation in a equation mode \begin{equation}

\end{equation}
The equations look very small. Is there a command or a package that I can use.

Thanks in advance.
Maven U Parker

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Stefan Kottwitz
Site Admin
Posts: 10320
Joined: Mon Mar 10, 2008 9:44 pm

Increase Equation Size

Post by Stefan Kottwitz »

Hi,

you could use a common font size command, but outside of the equation environment, and limit the effect of that change by curly braces or \begingroup ... \endgroup, such as

Code: Select all

\begingroup
\Large
\begin{equation}
...
\end{equation}
\endgroup
Stefan
LaTeX.org admin
splaisan
Posts: 1
Joined: Sun Mar 13, 2016 7:11 pm

Re: Increase Equation Size

Post by splaisan »

Thanks Stefan, I've been looking for this for 30min with only :mrgreen: unusable answers.
Post Reply