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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
\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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis