Math & ScienceFont Size in Equation

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
perobce
Posts: 2
Joined: Tue Mar 06, 2012 11:08 am

Font Size in Equation

Post by perobce »

I have this equation:

Code: Select all

\begin{equation}
a = min \left\{ \begin{array}{ll}
2b\\
\frac{100}{b\cdot a}+c
\end{array}\right.
\label{enacba36}
\end{equation}
As you can see in the attachment font in expression 100/(b*a) is decreased. I wonder what to do, that font in this expression will be normal sized.
Attachments
enacba lateh.png
enacba lateh.png (5.2 KiB) Viewed 1980 times
Last edited by localghost on Tue Mar 06, 2012 11:44 am, edited 1 time in total.

Recommended reading 2024:

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

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Font Size in Equation

Post by localghost »

Such case differentiations are better typeset with an appropriate environment. The mathtools package offers corresponding structures.

Code: Select all

\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{mathtools}   % loads »amsmath«

\begin{document}
  \begin{equation}\label{enacba36}
    a = \min
    \begin{dcases}
      2b \\
      \frac{100}{b\cdot a}+c
    \end{dcases}
  \end{equation}
\end{document}
For details refer to the package manual. The cases package also enhances the cases environment originally provided by the amsmath package.


Best regards and welcome to the board
Thorsten
Post Reply