convert rst to latex, problem with tables
- by ace
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?