first my apologies for not providing a full minimum working example.
Description:
I have a large number of (mainly large) tables in the csv format that I wish to include in a LaTeX document.
The job itself is easily achieved with the csvsimple package, calling:
\usepackage{longtable}
\usepackage{csvsimple}
I include my tables using this command:
{
\small
\begingroup\catcode`"=9
\csvautolongtable[respect underscore=true]{table_file.csv}
\endgroup
}
Problem:
Some of my tables are too wide to fit onto an A4 page, even in landscape mode. However, I have a number of columns that I do not need to include in the document. (They are nice to have, but not absolutely necessary.)
Question:
Can I exclude specific columns while retaining the use of the \cvsautotable command?
In case it helps, this is my header, consistent across the files. The columns I would want to drop are H to Br. Writing a custom header might work, but then I guess it needs a customization of the function to read in the table? (The header includes spaces as well...):
Name,dHf ref.(kJ/mol),DFT E0(Eh),DLPNO E0(Eh),ZPVE(J/mol),Htot(J/mol),H,C,N,O,F,Si,P,S,Cl,Br
(Yes, I saw the manual - and unfortunately I didn't extract a solution from it...)
Many thanks.