I am using csvsimple to read a CSV file into my document. Here is the document:
\documentclass[12pt]{article}
\usepackage{csvsimple}
\begin{document}
\begin{tabular}{|c|c|c|}
\hline
Col1 & Col2 & Col3 \\
\hline
\csvreader [head to column names]{csvtest.csv}{}
{
\a & \b & \c \\
} \\
\hline
\end{tabular}
\end{document}
Here is the CSV file:
a,b,c
1,2,3
And here is the result:
As you can see, there is a blank line at the bottom of the table. How can I remove it?

