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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10348
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