Trying to compile this code will give me errors. Apparently there is some problem when using babel and package csvsimple.
The error is as follows:
Code: Select all
! Missing \endcsname inserted.
<to be read again>
\protect
l.19 \csvautotabular{data/1.csv}
The control sequence marked <to be read again> should
not appear between \csname and \endcsname.
Code: Select all
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{csvsimple}
\usepackage[spanish,es-noshorthands]{babel}
\begin{document}
\csvautotabular{data/1.csv}
\end{document}
Code: Select all
-------
123,321
321,123
-------
\csvautotabular
line eliminates the error. (Or not including babel).Any ideas?
Thanks!