Math & Science ⇒ What is wrong with this?
What is wrong with this?
What am I doing wrong here?
\begin{eqnarray}
\left[ \begin{array}{c}
C_{\alpha}^{+} (x_o +\ell) \\
. \\
. \\
_____ \\
C_{\alpha}^{-} (x_o) \\
. \\
. \\
\end{array} \right]
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
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
What is wrong with this?
welcome to the board!
- you used _____, however the underscore _ has a meaning in LaTeX for writing subscripts
- you forgot to close the eqnarray environment
- the code is incomplete, \documentclass missing etc.
- you don't need eqnarray for a simple expression with an array
- eqnarray is obsolete, see eqnarray vs. align
- you could use a matrix environment instead of array
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{bmatrix}
C_{\alpha}^{+} (x_o +\ell) \\
. \\
. \\
. \\
C_{\alpha}^{-} (x_o) \\
. \\
. \\
\end{bmatrix}
\]
\end{document}