Questions tagged [csvsimple]

{csvsimple} provides a simple LaTeX interface for the processing of files with comma separated values (CSV).

260 questions
8
votes
1 answer

Is it possible to generate custom exams taken the student's names from a csv archive?

I'd like to generate a single PDF file containing multiple exams (template available below). Each exam must have the field 'name' (see template) filled with the name of a student taken from a external list file (such as…
7
votes
1 answer

csvreader adds extra empty row at the bottom of the table

I want to create a xltabular table by loading the content of a CSV file, which is imported by way of csvreader. At the end of the table, an extra empty undesired row is shown. I can't figure out what I'm doing wrong. Here below my MWE, thank you for…
Luca Conti
  • 113
  • 3
7
votes
1 answer

Skip rows in csvsimple

Similar to this question, I need to skip some rows both from the top and bottom. For example, in this…
hola
  • 4,026
  • 3
  • 35
  • 72
5
votes
2 answers
4
votes
2 answers

csvsimple respect dollar not working

I'm using csvsimple to import some columns from a csv file into a tabular environment. The CSV file contains a column where all the values are dollar amounts, so just including it directly gives errors like the following: Extra }, or forgotten $.…
techdude
  • 155
4
votes
1 answer

Creating a Table caption with csvsimple package using \csvautotabular{}

I have the following CSV dow_distribution.csv file: DoW,ANZ Vol.,CBA Vol.,MQG Vol.,NAB Vol.,WBC Vol.,AORD Vol.,Total…
3kstc
  • 931
  • 6
  • 22
4
votes
2 answers

Unable to print without quotes in csvsimple

I am trying to print a table from .csv file which is generated by libreoffice in such a way one of the column has a value comma separated e.g John,Terang i want to print John, Terang without any quotes, but it seems to be printed as "John,Terang"…
Biki Teron
  • 3,275
4
votes
1 answer

csvreader and special characters in the csv header

I have a question quite similar to this question. But I do have the underscore character in the heading which causes issure. One column has the name q_u. When I try: \csvreader[ respect all, head to column names ]{data.csv}{} …
3
votes
0 answers

Escape special character in variable

I like to print a list of names and email addresses in LaTeX. These come from a CSV file and I read it with csvsimple package. A problem arised with email addresses like foo_bar@foo.bar... (underscore)... If I have the address in a variable like…
3
votes
1 answer

Automatic line breaks in csvautobooklongtable

I have automatically generated CSV (pipe-separated) Data, that I want to print as Latex \csvautobooklongtable. I do not know the the amount of columns (they are variable in number from one set of data to the other). My problem is, that the lines…
2
votes
2 answers

Filtering CSV file

I managed to confuse myself with filtering data from a CSV file. For example, in the below example, how do I insert the relevant…
blackened
  • 4,181
2
votes
1 answer

How to use csvsimple

I want to include a csv file as a table into my overleaf-document. \documentclass[a4paper]{article} \usepackage{csvsimple} \csvautotabular{population.csv} I have no idea, why it is not working. Does someone know ? ;-)
Katrin Menne
  • 21
  • 1
  • 2
2
votes
3 answers

csvreader with tabular (to generate entire table) with caption

I have the following MWE that works: \begin{filecontents*}{\jobname.csv} Project, Size A_b,-0.1237466 b,0.04632737 \end{filecontents*} \documentclass{article} \usepackage{csvsimple} \begin{document} …
2
votes
1 answer

csvreader has integer overflow at 16384 = 2**14

I have to send quite a bit of documentation to Germany for taxes. I created some TeX files which use some CSV files to automatically generate this report. So far, I was a student and numbers were low. Last year I started working and I just noticed…
Martin Thoma
  • 18,799
2
votes
1 answer

csv issue with semicolon

using pipe as separator in csvsimple…
flav
  • 4,714
1
2 3