2
\begin{equation}
\boxed{\sigma_{ann} \propto \begin{cases}
\frac{\lambda_3^2 m_b^2}{m_H^4} & \text{$m_S\ll\frac{m_H}{2}$}\\ \\
\frac{\lambda_3^2 m_b^2}{m_H^2 \Gamma_H^2} &\text{$m_S=\frac{m_H}{2}$}\\ \\
\frac{\lambda_3^2 m_b^2}{m_H^2 \Gamma_H^2} &\text{$m_S=\frac{m_H}{2}$}
\end{cases}}
\end{equation}

This is giving following output- enter image description here

But i want my output to look like this

enter image description here where size of fractions inside curly bracket is larger.

solphy101
  • 165

2 Answers2

1

Answer to the updated question

Regarding the frac part of the question:

  • If you use the amsmath package then you can use \dfrac instead of \frac.
  • This will make is larger.
  • displaystyle - hence the d in \dfrac - is the technical term I think.

Answer to the original question

Normally you should show some effort of your own or at least provide a so called MWE. But you are new and probably don't know that.

What you ask for is called cases environment (boxed version) - see the following related questions/answers for example:

There is even a tag (What is a tag?) for cases:

Boxed equations are also easy to find - here are some related questions/answers:

1

To get the "displaystyle", i.e., large, fractional expressions to the right of the curly brace, either use \dfrac instead of \frac or employ the dcases environment (requires the mathtools package) instead of the "basic" cases environment. As the other comments and answers have already noted, used \boxed to enclose the equation in a rectangular frame.

By the way, the \text{$...$} wrappers are unnecessary; just write out the argument.

enter image description here

\documentclass{article}
\usepackage{mathtools} % for 'dcases' environment
\begin{document} 
\begin{equation}
\boxed{
\sigma_{\mathrm{ann}} \propto 
\begin{dcases}
\frac{\lambda_3^2 m_b^2}{m_H^4}           & m_S\ll\frac{m_H}{2}\\[1ex]
\frac{\lambda_3^2 m_b^2}{m_H^2\Gamma_H^2} & m_S=\frac{m_H}{2}\\[1ex]
\frac{\lambda_3^2 m_b^2}{m_H^2\Gamma_H^2} & m_S=\frac{m_H}{2}
\end{dcases}
}
\end{equation}
\end{document} 
Mico
  • 506,678