I'm using package csvsimple to read .csv files. The problem is, in some of the cells I have percentages, like:
a,b
1,10%
3,16%
If I leave the %s, everything after the first % is omitted, that is, it's behaving like a comment. If I escape % with \% I get compilation errors.
Example:
\documentclass{minimal}
\usepackage{csvsimple}
\begin{document}
\csvautotabular{tab.csv}
\end{document}
where tab.csv:
a,b
1,2%
2,5%
The same problem happens with datatool package.
