What's wrong with the following figure in the text? First, it says "amsmath: Unable to redefine math accent \vec." and then "Undefined control sequence" but neither is any helpful to me. It uses LLNCS (Lecture Notes for Computer Science), see http://www.springer.com/computer/lncs?SGWID=0-164-6-793341-0
\documentclass{llncs}
\usepackage{amsmath}
\title{Aussagenlogik}
\author{someone}
\institute{somewhere}
\begin{document}
\maketitle
\section{Einleitung}
\paragraph{...}
\section{Definition einer Aussage}
\paragraph{...
}
$\[X sei eine Aussage. Dann ist der Wahrheitswert W(X) wie folgt definiert:\\
W(A) = \begin{cases} wahr, \mbox{wenn X zutrifft}\\ falsch, \mbox{wenn X nicht zutrifft}
\end{cases}
\cite{Sie}\]$
\begin{thebibliography}{999}
\bibitem {Sie} Bla Bla
\end{thebibliography}
\end{document}


$is used to being math, but then right after the dollar you use\[?? The\[starts display math. so you don't need the$before the\[nor one after\]. Furthermore you should use\text{}to enclose you text that is within a math mode environment. – Peter Grill Oct 16 '12 at 15:10