convert rst to latex, problem with tables
Posted
by ace
on Stack Overflow
See other posts from Stack Overflow
or by ace
Published on 2010-04-07T18:37:05Z
Indexed on
2010/04/07
18:43 UTC
Read the original article
Hit count: 370
hi all, I have some .rst files and I convert them to .tex file using standard sphinx converter.
but in some .rst I have tables with special width like:
.. list-table::
:widths: 50 50
but resulting .tex always contains tables like:
\begin{tabulary}{\textwidth}{|L|L|}
so, column width is lost.
how can I preserve column width when converting rst to latex?
© Stack Overflow or respective owner