Skip to content

.Net library for generating latex tables from .net collections

License

Notifications You must be signed in to change notification settings

PatrykOlejniczak/Simba

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simba

.Net library providing extension method for collection that allow generating latex tables.

Sample

How to use:

var persons = new List<MockPerson>()
{
    new MockPerson("John", "Smith", 18),
    new MockPerson("John", "Carter", 20)
};

var latex = persons.ToLatex();

Result:

\begin{table}
    \begin{tabular}{|c|c|c|}
        \hline
            John & Smith & 18 \\
        \hline
            John & Carter & 20 \\
        \hline
    \end{tabular}
\end{table}

Contribution

Feel free to make pull request and add something or just create issue with question / suggestion for improvement / report bug.

About

.Net library for generating latex tables from .net collections

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages