4
\documentclass{article}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}

\begin{document}
\begin{equation}
H(\&)=  \dfrac{R_1 + R_2(\&C_2R_1 +1)}{\&C_2R_1 +1}
\end{equation}
\end{document}

I would like to achieve the following output: enter image description here

Matsmath
  • 936
PCat27
  • 149

1 Answers1

6

You can use a simple array environment, based on this answer:

\documentclass{article}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}

\begin{document}

\begin{equation}
 H(\&)=  \dfrac{R_1 + R_2(\&C_2R_1 +1)}{\&C_2R_1 +1}\begin{array}{l}
\rightarrow \text{Ceros}\\
\rightarrow \text{Polos}
\end{array}

\end{equation}
\end{document}

enter image description here


Related: Case equation without curly brace.

Matsmath
  • 936