Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$\dfrac{c[(1-p)^{\frac{-1}{c}}-1]}{p\left[c{(1-p^{\frac{-1}{c}-1}+1\right]}$
\end{document}
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$\dfrac{c[(1-p)^{\frac{-1}{c}}-1]}{p\left[c{(1-p^{\frac{-1}{c}-1}+1\right]}$
\end{document}
\frac
command in the denominator is missing to avoid an error message and to approximate the output in the figure.Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$\dfrac{c[(1-p)^{\frac{-1}{c}}-1]}{p\left[c\{(1-p^{\frac{-1}{c}-1}+1\right]}$
\end{document}
thank you.Stefan Kottwitz wrote:It's may be what Bartman said - but you seem to have a brace in the formula picture: to get a curly brace in the output, quote it by a backslash, \{. See and try some code, click the "Run LaTeX here" button:
If have an opening brace in a formula, you should have a closing brace. That's for input and for output.Code: Select all
\documentclass{article} \usepackage{amsmath} \begin{document} $\dfrac{c[(1-p)^{\frac{-1}{c}}-1]}{p\left[c\{(1-p^{\frac{-1}{c}-1}+1\right]}$ \end{document}
Stefan