Tagged Questions
1
vote
0answers
79 views
How can I convert the tables and math in a latex document to one of the markup languages supported by github's wiki?
I wrote some software documentation in Latex, but need to get it into a more lightweight format.
I used pandoc to convert latex to markdown, but it did not do a very good job of converting tables.
...
5
votes
3answers
163 views
Converting a list of words to a table
I would like to convert a list of terms like :
A, B, C, D, E, F
to a table like:
| A | B | C |
| D | E | F |
or
| A | C | E |
| B | D | F |
but without having to rewrite my table each time, ...
57
votes
17answers
5k views
Comprehensive list of tools that simplify the generation of LaTeX tables
Manually hacking tables in LaTeX is one of the less funny things when preparing a document. Naturally, there are quite a few tools that promise to simplify this. In fact, I have somewhat lost track of ...
4
votes
2answers
229 views
Is there a way to compile a LaTeX table into tab delimited text?
I am submitting a manuscript to a journal1 that will only accept Word or .rtf submissions (arrrg!) and they require that tables be tab separated text.
Is there a way to compile LaTeX tables into tab ...
2
votes
1answer
758 views
Wide table problem when generating PDF
I have a LaTeX wide table generated from a data frame in R using xtable, but when the PDF is created not all the data is shown, just a part of it, and the other part is hidden on the right of the PDF. ...