On 2009-05-12, Georg Brandl wrote: > Christophe de VIENNE schrieb: >> Hi,
>> I have a few tables in my documentation that do not fit on one page. >> I would like them to be split, for example with the \longtable latex option. >> I see this issue is known but not solved : >> http://bitbucket.org/birkenfeld/sphinx/issue/19/ >> Is there a way to workaround the current limitation for only some tables ? > I'm not aware of one, except for the suggestions I already made in the > bug report. A patch would be welcome! Docutils uses longtable (and the array package) unconditionally. Even if this might be an overkill for short tables, I do not remember any bug-reports regarding to this choice. An alternative would be to use a "special" class argument: analogue to "booktable" and "borderless", the latex writer could switch to using a "longtable" if there is a class-argument "longtable" like:: .. class:: longtable ============= =========================== ======= ======== ====== ======= Name Family {m}{it} {bx}{it} {m}{n} {bx}{n} ============= =========================== ======= ======== ====== ======= jkp Kepler Serif x x mdbch Math Design Charter x x x x zplm Palatino (mathpazo) x x ============= =========================== ======= ======== ====== ======= Günter --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sphinx-dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sphinx-dev?hl=en -~----------~----~----~----~------~----~------~--~---
