I use eqnarray for equations. After using csvreader, the "special" mathematical symbols like "sum" disappear.
The following is the code. The equation before and after csvreader is the same.
\begin{eqnarray}
0 & = & \sum_{t=1}^{n} (E_{t} - A_{t}) * (1+r)^{-t} + L_{n} (1+r)^{-n} - A_{0}
\end{eqnarray}
\begin{table}[h]
\begin{minipage}{\linewidth}
\renewcommand{\footnoterule}{}
\resizebox{\textwidth}{!}{%
\csvreader[separator=semicolon, respect and, tabular=|l||*{13}{r|},
table head=\hline& Jan & Feb & Mrz & Apr & Mai & Jun & Jul & Aug & Sep & Okt & Nov & Dez & Summe\\\hline\hline,
late after line=\\\hline]%
{DATA/KVN/kvnmonat.csv}{artikel=\artikel,1=\jan,2=\feb,3=\mrz,4=\apr,5=\mai,6=\jun,7=\jul,8=\aug,9=\sep,10=\okt,11=\nov,12=\dez,Summe=\sum}%
{\artikel&\jan&\feb&\mrz&\apr&\mai&\jun&\jul&\aug&\sep&\okt&\nov&\dez&\sum}%
}
\caption[Anzahl der bei KVN gebauten Displays]
{\label{tab:kvndisplaykomm} Menge der bei KVN gebauten Displays unterteilt nach Monaten und Display.}
\end{minipage}
\end{table}
\begin{eqnarray}
0 & = & \sum_{t=1}^{n} (E_{t} - A_{t}) * (1+r)^{-t} + L_{n} (1+r)^{-n} - A_{0}
\end{eqnarray}
After Compiling it looks like this:
The Sum-Symbol is missing from now on in the whole document, in all chapters.
Can anyone help me? Thank you!

Summe=\sumtoSumme=\summeand change the table accordingly? – TeXnician Apr 22 '18 at 17:02I use eqnarray for equations. Well, you shouldn't, see Avoid eqnarray. This being said, could you post a full compilable code? – Bernard Apr 22 '18 at 17:02