6

I often use R's xtable library or emacs org-mode to create tables in LaTeX (they are wonderful, by the way). I wonder if there are other tools people use which facilitate construction of large tables containing more text than data. I think I might have at one point also used OpenOffice/LibreOffice Calc's export tool designating delimiter (&) and eol (\\).

One remaining issue with most of these tools is that the generated tables by default do not wrap longer lines of text so I have to post-process with a tool like Python to insert the contents of each cell in a minipage environment. I wonder if anyone here has better workarounds for this type of application, particularly graphical tools which do not require the user to keep track of &s and \\s spanning multiple lines in a .tex file?

hatmatrix
  • 2,913
  • 6
  • 31
  • 41

1 Answers1

3

You may want to try pgfplotstable package, though it is not graphical.

As for the word wrapping, you should specify a column width at the start of the table environment.

Siyuan Ren
  • 1,519