I am writing a two column journal in which I am listing the components of a vector. The vector is too long to fit in one column, and I am using the \left and \right around the brackets that enclose the vector. However the dmath environment does not automatically break the vector into two lines. The code is listed below
\begin{dmath}
\left(\frac{-(n-1)}{2}h_{12}l,\ldots,\frac{-3}{2}h_{12}l,\frac{-1}{2}h_{12}l, \frac{1}{2}h_{12}l,\frac{3}{2}h_{12}l,
\ldots,\frac{n-1}{2}h_{12}l\right). \label{eq:x2}
\end{dmath}
The output looks like this

Any one has an idea how to correct this?
EDIT: The preamble of my document is listed below
\documentclass[journal]{IEEEtran}
\usepackage{cite}
\ifCLASSINFOpdf
\usepackage[pdftex]{graphicx}
% declare the path(s) where your graphic files are
\graphicspath{{../figs/}}
\else
\usepackage[dvips]{graphicx}
% declare the path(s) where your graphic files are
\graphicspath{{../figs/}}
\fi
% *** MATH PACKAGES ***
\usepackage[cmex10]{amsmath}
\interdisplaylinepenalty=2500
\usepackage[caption=false,font=footnotesize]{subfig}
\usepackage{url}
\usepackage{breqn}
\hyphenation{op-tical net-works semi-conduc-tor}
\begin{document}
\section{Some Random Section}
\begin{dmath}
\left(\frac{-(n-1)}{2}h_{12}l,\ldots,\frac{-3}{2}h_{12}l,\frac{-1}{2}h_{12}l, \frac{1}{2}h_{12}l,\frac{3}{2}h_{12}l,
\ldots,\frac{n-1}{2}h_{12}l\right). \label{eq:x2}
\end{dmath}
\end{document}
Hopefully this helps!


\ifCLASSINFOpdfto\fi(included) can safely be replaced simply by\usepackage{graphicx}\graphicspath{{../figs/}}. If the manual says differently, don't trust it. :) – egreg Jun 21 '12 at 22:26