I would like to insert brackets around a sum to signal the number of terms inside like we sometimes do in mathematics. I drew a picture:

The bracket can be either on top or bottom. Is there any way to do this in LaTeX?
I would like to insert brackets around a sum to signal the number of terms inside like we sometimes do in mathematics. I drew a picture:

The bracket can be either on top or bottom. Is there any way to do this in LaTeX?
Try it this way:
\documentclass{scrartcl}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\overbrace{c+d+e+f+\dots+i}^{8/a} \quad
\underbrace{c+d+e+f+\dots+i}_{8/a}
\end{equation}
\end{document}
Result:

\(c)dots would be more appropriate here. mathtools provides the \overbracket/\underbracket version.
– Qrrbrbirlbel
Sep 15 '13 at 20:57
\dots; amsmath knows which kind of dots are good for this case.
– egreg
Sep 15 '13 at 21:03
\overbrace{c+d+e+f+...+i}^{8/a}. I know there are other questions on this site that pertain to overbraces, unless the symbol you seek to overset is unusual in design. – Steven B. Segletes Sep 15 '13 at 20:43