rened / LaTeX.jl

Create LaTeX documents from within Julia, including image handling
Other
54 stars 15 forks source link

Is it possible to write Tabular types to .tex? #14

Closed ezgikurt closed 6 years ago

ezgikurt commented 6 years ago

Hi, is it possible to have the output as .tex files (i need to compile them later, together with other figures & tables)? When i do report(Tabular(Array)) the output is a string, but when i try writedlm("example.tex", report(Tabular(Array)) the outcome is a .tex file where each letter is printed on a line.

I have been able to do it with open("example.tex", "w") write() close() sequence but I was wondering if there is a neater option?

rened commented 6 years ago

That is caused by writedlm. Use write instead.