Text Formatting ⇒ Increase Equation Size
-
- Posts: 6
- Joined: Sun Jan 02, 2011 1:19 pm
Increase Equation Size
\end{equation}
The equations look very small. Is there a command or a package that I can use.
Thanks in advance.
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
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Increase Equation Size
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 asCode: Select all
\begingroup
\Large
\begin{equation}
...
\end{equation}
\endgroup
Re: Increase Equation Size
