1

First time posting, sorry if my question in the title isn't clear enough. To clarify, I'm trying to put an inequality sign, more specifically the sign > alongside a given Greek letter (alpha) after a given line assumption.

I want to put have something like this, which was done in Word as a draft.

enter image description here

Whereas in LaTeX, the outcome is like this

enter image description here

A sample of my work is as follows

FOC\begin{equation}
\frac{\partial G}{\partial q} = \mu_z - r_0 - 2\alpha q\sigma_z^2    \label{eq:1.6}
    \end{equation}\\
SOC\begin{equation}\frac{\partial^2G}{\partial q^2} | _\alpha >0 = -2\alpha\sigma_z^2 < 0   \label{eq:1.7}
    \end{equation}
From \ref{eq:1.3} solving for q yields
    \begin{align*}
\mu_z - r_0 = 2\alpha q\sigma_z^2
    \end{align*}
    \begin{equation}
q = \frac{u_z - r_0}{2\alpha\sigma_z^2}
   \end{equation}

Notice that the inequality doesn't go underneath with the letter, trying to overcome this but still haven't found a solution.

naphaneal
  • 2,614
  • 3
    If a subscript (or superscript) has more than one character, you need to enclose it in braces (e.g. |_{\alpha>0}). Otherwise LaTeX has no way to know where the subscript ends. – Ian Thompson Jan 10 '17 at 22:04
  • Also see: http://tex.stackexchange.com/questions/15894/evaluation-of-differentiation-and-integration?rq=1 – Au101 Jan 10 '17 at 22:19

1 Answers1

1

Put {} around the underscript.

FOC
\begin{equation}
 \frac{\partial G}{\partial q} = \mu_z - r_0 - 2\alpha q\sigma_z^2 \label{eq:1.6}
\end{equation}
SOC
\begin{equation}
 \frac{\partial^2G}{\partial q^2} | _{\alpha >0} = -2\alpha\sigma_z^2 < 0\label{eq:1.7}
\end{equation}
From \eqref{eq:1.7} solving for $q$ yields
\begin{align}
 \mu_z - r_0 &= 2\alpha q\sigma_z^2\notag\\
 q &= \frac{u_z - r_0}{2\alpha\sigma_z^2}
\end{align}

enter image description here

  • ... off-topic: \left.\frac{\partial^2G}{\partial q^2}\right|_{\alpha >0} = -2\alpha\sigma_z^2 < 0 \label{eq:1.7} will give more nice result. By the way, your answer should have form of complete small document ... – Zarko Jan 10 '17 at 22:18
  • @Zarko I'd much prefer something like \Big|_{\alpha>0} or \bigg|_{\alpha>0} rather than \left. and \right|. – egreg Jan 10 '17 at 22:40
  • for this reason I titled my comment "off-topic" ... :). you solve issue of subscripts! – Zarko Jan 11 '17 at 00:15