latexTable

Converts matrices, cells and MATLAB tables to LaTex table code. Allows format,pivot,col/row headers.
17.7K Downloads
Updated 20 Oct 2016

Converts matrices, cells or MATLAB tables to LaTeX table code. Easy to use and very flexible:
- takes MATLAB matrices, cells or tables as input
- gives code for a LaTeX table containing your data as output
- handles numeric and text/string data
- easy including in your code for automation
- easy direct saving as a LaTex document (see example 2 in runExamples.m)
Optional features are:
- table positioning
- column/row labels
- column/row-wise formatting (like setting the number of digits etc.)
- pivoting the table (90 degree rotation making columns rows and vice versa)
- setting the default symbol for NaN values
- LaTeX column alignment
- LaTeX table borders, caption, label
- output a complete LaTeX document instead of a plain table
A little example:
input.data=[1,3;4,2]; % set up data
latexTable(input) % obtain LaTeX code
For further details and examples can be found in latexTable.m and runExamples.m

Cite As

Eli Duenisch (2024). latexTable (https://github.com/eliduenisch/latexTable), GitHub. Retrieved .

MATLAB Release Compatibility
Created with R2013b
Compatible with any release
Platform Compatibility
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Versions that use the GitHub default branch cannot be downloaded

Version Published Release Notes
1.21.0.0

new feature for positioning the table in your LaTex document, addional examples, some minor fixes

1.19.0.0

added README.md for github, added BSD 2 license comment (the default license at MathWorks File Exchange)

1.18.1.0

minor changes

1.18.0.0

updated description

1.17.0.0

updated summary

1.16.0.0

fixed git repo upload

1.15.0.0

using github repo next trial

1.14.0.0

updated version date, switched back from github to regular upload

1.13.0.0

function can now process data values given as strings (code proposed by JMP Phillips)

1.12.0.0

it is now possible to use MATLAB tables without row and/or column names

1.11.0.0

Fixed output when no row and/or column labels are set. Thank you Dimitar Atanasov for mentioning!

1.10.0.0

changed title

1.9.0.0

Improved documentation.

1.8.0.0

Changed file descriptions.

1.7.0.0

Some changes in the documentation.

1.6.0.0

This update enables pivoting of the table (=transpose data and labels). The data format definition can now be applied column- or row-wise.

1.5.0.0

It is now possible to use the new MATLAB datatype 'table' as data input.
Column headers are added as an optional input.

1.4.0.0

Updated comments in example script

1.3.0.0

Changes in comment section

1.2.0.0

Added a script to run an simple example of latexTable.m

1.1.0.0

Now you can set a replacement value for NaNs in your MATLAB data, e.g. use an empty string for a blank space or '-' for a minus sign.

1.0.0.0

To view or report issues in this GitHub add-on, visit the GitHub Repository.
To view or report issues in this GitHub add-on, visit the GitHub Repository.