Simple LaTeX table code creator from user input.
Clone the code and run:
./latex_table_creator
or
ruby latex_table_creator
Create Menu class to handle user input (instead of init.rb).Accept CSV file as an input for the table.- Tests
(and Travis CI configuration) with Rake. Check another structure for the project.- Fix the project in Codecov or change it to Coversall.
The output file generated with this little utility should be similar to the following code:
\begin{table}
\begin{center}
\begin{tabular}{|c|c|}
\hline
1 & 2 \\
\hline
2 & 3 \\
\hline
\end{tabular}
\caption{}
\label{}
\end{center}
\end{table}