1. Starting point - SheilaOM/TFG GitHub Wiki

I start from an example of SATToSE 2017 provided by the teacher.

The code consists of the generation of a Latex text that will contain the data of the participants (later, this text is copied to the file generated.txt). To do this, the program read the data of a .csv file, in which each line is the data of a participant, and in the line, separated by commas, are the data of these. The file is converted into an array in which each element is a line (a participant) and, in turn, each of the elements is another array with the data of that line (data of each participant).

With this array, a loop is made that cycle through the array (each line), and each time generates a text in Latex taking the elements of the "internal" array (the data of each participant).

This text is added to a String, which is the final output.

Link to commit