Is there a package out there that helps writing LaTeX tables (tabular
) from matrices and a bit of metadata? This method from Base.Markdown
is almost there, but I need some rules etc. This would be trivial to write and package up, I just would rather avoid it. I don’t need something as high-level as RegressionTables.jl
, want to assemble the output myself.
2 Likes
I have used LatexPrint before with some success. I found it to be lacking for anything beyond basic tables though. So I used its definitions but wrote a more fully-featured version of its tabular
function that I called fulltabular
. I’ve put it in a gist here
2 Likes
I ended up rolling my own
https://github.com/tpapp/LaTeXTabulars.jl
9 Likes
Looks great! I’ll have to check it out.